# strapi-plugin-kv

> This is the description of the plugin.

Latest version **0.0.1** (published 2020-08-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install strapi-plugin-kv
pnpm add strapi-plugin-kv
yarn add strapi-plugin-kv
bun add strapi-plugin-kv
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2020-08-02 |
| First published | 2020-08-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=10.0.0 |
| Dependencies | 0 |
| Unpacked size | 4.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Dominik Aksamit |
| Maintainers | daksamit |

## Links

- npm: https://www.npmjs.com/package/strapi-plugin-kv
- npm.io page: https://npm.io/package/strapi-plugin-kv

## Recent versions

- 0.0.1 (latest) — 2020-08-02

## README

# Strapi plugin kv

## Quick Examples

API Access:

```sh
# GET /kv/:key
### returns key

# POST /kv/:key
{ "value": { "some": "valid JSON data" } }
### adds key with given value to strapi
```

Access storage service:

```js
const storage = strapi.plugins["kv"].services.storage;
storage.get("key");
storage.set("key", { description: "any data" });
```

---
_Source: https://npm.io/package/strapi-plugin-kv · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
