% bun i bun.db Copy
% bun i bun.db
const db = new BunDB("test.sqlite");await db.set("hello", "world");let hello = await db.get<string>("hello"); // "world" Copy
const db = new BunDB("test.sqlite");await db.set("hello", "world");let hello = await db.get<string>("hello"); // "world"