Lightweight JSON/YAML database for Node.js
npm install ydb
import { Database } from 'ydb';
const db = new Database('path/to/db.json');
db.set('foo', 'bar');
db.get('foo'); // bar
Check out the Documentations for more info
Lightweight JSON/YAML database for Node.js
npm install ydb
import { Database } from 'ydb';
const db = new Database('path/to/db.json');
db.set('foo', 'bar');
db.get('foo'); // bar
Check out the Documentations for more info