bun.db A wrapper of quick.db for bun. Installation % bun add bun.db Usage const db = new BunDB('test.sqlite'); await db.set('hello', 'world'); let hello = await db.get<string>('hello') // "world"