A simple key-value store with SQLite that use bun:sqlite
. No dependencies.
bun add bun-kv
import { KV } from 'bun-kv'
type Item = {
id: string
created_at: number
}
const items = new KV<Item>('items.sqlite')
items.set('foo', { created_at: Date.now(), id: 'foo' })
const foo = items.get('foo')
^? { created_at: number, id: string } | undefined
MIT