Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 365 Bytes

readme.md

File metadata and controls

20 lines (15 loc) · 365 Bytes

ydb

Lightweight JSON/YAML database for Node.js

ydb

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