Skip to content

Files

Latest commit

 

History

History
29 lines (19 loc) · 445 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 445 Bytes

bun-kv

A simple key-value store with SQLite that use bun:sqlite. No dependencies.

bun add bun-kv

Sample usage with TypeScript:

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

License

MIT