Package Exports
- @diam/json-db
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@diam/json-db) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Simple JSON DB
Install (via npm)
npm install --save @diam/json-db
Usage
Simply writes json to a file.
var db = new JsonDB('./file.json');
db.write({ message: 'whatever you want' }, function (err) {
db.read(function (err, val) {
// val = { message: 'whatever you want' }
})
})
It can also be done synchronously, like so:
var db = new JsonDB('./file.json');
db.writeSync({ message: 'whatever you want' })
var val = db.readSync()
// val = { message: 'whatever you want' }
Contributions welcome!
Credits
This library was initially made by the awesome team of engineers at Diamond.
If you haven't already, make sure you install Diamond!