storage.js compatible with isomorphic apps.
<script src="https://unpkg.com/storage-js-iso@0.2.0/dist/storage.min.js"></script>$storage.on('time', function (e) {
console.log('time changed', e)
})
setInterval(function () {
$storage.set('time', (new Date()).getTime());
}, 50)- set(key:String, value:Any)
- get(key:String)
- remove(key:String)
- clear()
- on(key:String, fn:Function)
- off(key:String, fn:Function)