Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ulughann/ydb

Lightweight JSON/YAML database for Node.js
https://github.com/ulughann/ydb

database easy json nodejs quickdb toml yaml

Last synced: about 2 months ago
JSON representation

Lightweight JSON/YAML database for Node.js

Awesome Lists containing this project

README

        

# ydb
Lightweight JSON/YAML database for Node.js

![ydb](static/banner.png)

## Installation
```bash
npm install ydb
```

## Usage
```javascript
import { Database } from 'ydb';
const db = new Database('path/to/db.json');

db.set('foo', 'bar');
db.get('foo'); // bar
```

Check out the [Documentations](https://onrirr.github.io/yDB/) for more info