/store-json

simple json storage, read file into memory

Primary LanguageJavaScript

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