store-json
v1.0.1
Published
simple json storage, read file into memory
Readme
store-json
simple json storage, read file into memory
Usage
const Store = require('store-json');
const store = new Store('./data.json');
store.set('name', 'lianer');
store.get('name'); // lianer