1.0.0 • Published 6 years ago

json-store v1.0.0

Weekly downloads
270
License
MIT
Repository
github
Last release
6 years ago

JSONStore

Simple json store for node. Saves changes on disk immediately and blocking, so only relevant for cli applications and such.

Usage

var JSONStore = require('json-store');
var db = JSONStore('./index.json');

db.set('foo', 'bar');
db.get('foo');                // bar

db.set('obj', {foo: 'bar'});
db.get('obj').foo             // bar