dragodb
v1.0.2
Published
LSM Tree based NoSql Database
Downloads
39
Maintainers
Readme
DragoDB
Fast & Durable key-value store
DragoDB is a key-value store based on Log Structure Merge Tree (LSM Tree) inspired by LevelDB / RocksDB.
Installation
npm i dragodb --save
Usage
import { DragoDB } from "dragodb";
// setup database
const db = new DragoDB("my_db");
// put a record
await db.put("key", "value");
// get a record
const data = await db.get("key");
console.log(data)