mobx-localstorage
v1.2.0
Published
A declarative reactive localStorage using MobX
Downloads
3,334
Readme
mobx-localstorage
A declarative reactive localStorage using MobX
Install
yarn add mobx-localstorage
npm i -S mobx-localstorage
Features
- Higher performance than native getter
- Synchronize with external changes
- Support native APIs and MobX APIs
Usage
Same as native but can be observed by MobX
import { autorun } from 'mobx';
import localStorage from 'mobx-localstorage';
autorun(() => {
console.log(localStorage.getItem('foo'));
});
localStorage.setItem('foo', 'bar');
// print bar