strapi-plugin-kv
v0.0.1
Published
This is the description of the plugin.
Downloads
4
Readme
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 strapiAccess storage service:
const storage = strapi.plugins["kv"].services.storage;
storage.get("key");
storage.set("key", { description: "any data" });