0.0.9 • Published 9 years ago
micro-storage v0.0.9
micro-storage
(<1kb) A lite localStorage plugin with namespace
Try it now
Getting started
$ npm install micro-storageHow to use
Namespace
var example = microStorage('myNamespace');SetItem
example('myKey', myValue);GetItem
example('myKey'); // myValueRemoveItem
example.remove('myKey');ShowList
example.list(); // ['myKey']ClearItem
example.clear();License
MIT