structured-localstorage
v1.0.1
Published
access data as a plain object and get/set them to localStorage transparently
Downloads
1
Readme
Transparently store JSONable data into localStorage
localStorage provides a simple key - string value storage. This module behaves like a regular object and stores its data to localStorage on the background.
Requires browsers that support Proxy object:
- Chrome 49+
- Firefox 18+
- Edge
- Safari 10+
Usage
var storage = require('structured-localstorage');
storage.key = { subkey: 'value' };
storage.key.subkey = 'new value';