1.0.9 • Published 3 years ago

local-json-store v1.0.9

Weekly downloads
1
License
ISC
Repository
-
Last release
3 years ago

local-json-store

Installation

npm install local-json-store

Usage

const JSONStorage = require('./index').JSONStorage;
const js = new JSONStorage('./test');
js.setItem('testKey', {'aaa': 'bbb'});
console.log(js.getItem('testKey')['aaa']);

Fully implements the localStorage specfication including:

  • All methods
    • length
    • setItem(key, value)
    • getItem(key)
    • removeItem(key)
    • key(n)
    • clear()
  • Serializes to disk in the location specified during instantiation
  • Associative array jsonStorage['myKey'] = 'myValue' and dot property jsonStorage.myKey = 'myValue'
1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago