jsonnrdatabase
v1.0.1
Published
A non-relational JSON-based database
Downloads
3
Readme
JSONNRDatabase
A JSON-based non-relational database (?)
JSONNRDatabase is a non-relational database based on JSON (it's in the name), and it is very easy to use.
Just modify the data itself!
It is used like this:
const { Database } = require('jsondatabase');
const db = new Database('./jar.json');
this.data['mouse'] = 'cat';
db.sync();
Yes, it is that easy.