bun.db A wrapper of quick.db for Bun. 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"