Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 455 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 455 Bytes

bun-kv

A simple KV store using Bun's SQLite module.

bun i redraskal/bun-kv#main
import KV from "bun-kv";

const database = new Database("bun.sqlite");
const KV = new KV(database);

KV.set("banana", "bread");
console.log(KV.get("banana")); // "bread"

KV.remove("banana");

This project was created using bun init in bun v0.6.15. Bun is a fast all-in-one JavaScript runtime.