0.0.9 • Published 8 years ago

micro-storage v0.0.9

Weekly downloads
10
License
MIT
Repository
github
Last release
8 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

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago