Skip to content

daksamit/strapi-plugin-kv-storage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Strapi plugin kv-storage

Quick Examples

API Access:

# GET /kv-storage/:key
### returns key

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

Access storage service:

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

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors