ydb
v1.4.1
Published
Json/Yaml database for rapid prototyping
Downloads
14
Readme
ydb
Lightweight JSON/YAML database for Node.js
Installation
npm install ydb
Usage
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