Skip to content

ulughann/yDB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

43ae14c · Oct 9, 2023

History

49 Commits
Jul 25, 2023
Oct 9, 2023
Oct 9, 2023
Jul 24, 2023
Oct 9, 2023
Jun 12, 2023
Oct 9, 2023
Jul 24, 2023
Jun 13, 2023
Jun 12, 2023
Jun 13, 2023
Oct 9, 2023
Oct 9, 2023
Oct 9, 2023
Oct 9, 2023
Jul 25, 2023
Jul 25, 2023
Jul 25, 2023
Jul 25, 2023
Jul 25, 2023

Repository files navigation

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