Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ulughann/ydb
- Owner: ulughann
- Created: 2023-06-12T18:56:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-09T18:10:40.000Z (about 1 year ago)
- Last Synced: 2024-09-11T22:38:28.360Z (4 months ago)
- Topics: database, easy, json, nodejs, quickdb, toml, yaml
- Language: TypeScript
- Homepage: https://onrirr.github.io/yDB/
- Size: 148 KB
- Stars: 12
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: CHANGELOG.md
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