# 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

```ts
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)


```