1.0.2 • Published 2 years ago

dragodb v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

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)