npm.io
0.0.1 • Published 6 years ago

strapi-plugin-kv

Licence
MIT
Version
0.0.1
Deps
0
Size
5 kB
Vulns
0
Weekly
0

Strapi plugin kv

Quick Examples

API Access:

# GET /kv/:key
### returns key

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

Access storage service:

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