Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 534 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 534 Bytes

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';