0.0.9 • Published 9 years ago

micro-storage v0.0.9

Weekly downloads
10
License
MIT
Repository
github
Last release
9 years ago

micro-storage

(<1kb) A lite localStorage plugin with namespace

Try it now

Getting started

$ npm install micro-storage

How to use

Namespace

var example = microStorage('myNamespace');

SetItem

example('myKey', myValue);

GetItem

example('myKey'); // myValue

RemoveItem

example.remove('myKey');

ShowList

example.list(); // ['myKey']

ClearItem

example.clear();

License

MIT

0.0.9

9 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago