Skip to content

itss0n1c/bun.db

Repository files navigation

bun.db

A wrapper of quick.db for Bun.

Discord server npm version npm downloads

Installation

% bun i bun.db

Usage

const db = new BunDB("test.sqlite");

await db.set("hello", "world");
let hello = await db.get<string>("hello"); // "world"