dragodb
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

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)

Dependencies (0)

    Dev Dependencies (6)

    Package Sidebar

    Install

    npm i dragodb

    Weekly Downloads

    0

    Version

    1.0.2

    License

    MIT

    Unpacked Size

    585 kB

    Total Files

    48

    Last publish

    Collaborators

    • kiranravichandran