akasha
v0.1.13
Published
Cross-browser storage with cookie-based fallback. Inspired by [store.js](https://github.com/marcuswestin/store.js/).
Downloads
352
Readme
akasha
Cross-browser storage with cookie-based fallback. Inspired by store.js.
Install
$ npm install akasha
Usage
import store from 'akasha';
// Store current user
store.set('user', {name: 'David'})
// Get current user
store.get('user')
// Remove current user
store.remove('user')
// Clear all keys
store.clear()