redux-persist-node-storage-fsync
v0.0.1
Published
Redux persist adaptor for Node local storage
Downloads
2
Maintainers
Readme
Redux persist node storage
Storage adaptor to use node-localstorage with redux-persist, by implementing the needed methods: setItem
, getItem
, removeItem
and getAllKeys
install
Simply run:
npm install --save redux-persist-node-storage
usage
import { AsyncNodeStorage } from 'redux-persist-node-storage'
import { persistStore, autoRehydrate } from 'redux-persist'
const store = createStore(reducer, undefined, autoRehydrate())
persistStore(store, { storage: new AsyncNodeStorage('/tmp/storageDir') })