1.0.1 • Published 5 years ago
reactjs-localstorage v1.0.1
reactLocalStorage
Easy use localstorage in Reactjs
https://www.npmjs.com/package/reactjs-localstorage
Installation
npm install reactjs-localstorageor
yarn add reactjs-localstorageExamples
import {reactLocalStorage} from 'reactjs-localstorage';
reactLocalStorage.set('var', true);
reactLocalStorage.get('var', true);
reactLocalStorage.setObject('var', {'test': 'test'});
reactLocalStorage.getObject('var');
reactLocalStorage.remove('var');
reactLocalStorage.clear();Test
npm run testAPI Guide
reactLocalStorage.set(key, value)reactLocalStorage.get(key, deafultValue=undefined, silent=true)reactLocalStorage.setObject(key, object)reactLoacStorage.getObject(key, defaultValue={}, silent=true)reactLocalStorage.remove(key)reactLocalStorage.clear()
silent:
true: Will not throw exception instead will return defaultValuefalse: Will throw exception
License
MIT