bun.db

bun.db

Discord server npm version npm downloads

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

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