JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 136
  • Score
    100M100P100Q117287F
  • License MIT

Lightweight SQLite-backed key-value server with HTTP API, atomic transactions, TTL, queue, and TypeScript client SDK.

Package Exports

  • @coderbuzz/kvs

Readme

KVS — @coderbuzz/kvs

Lightweight SQLite-backed key-value server with a built-in TypeScript client SDK. Designed for serverless and edge workloads.

Installation

npm install @coderbuzz/kvs

Quick Start

import { KvsServer } from "@coderbuzz/kvs";

const server = new KvsServer({ port: 3000, token: "my-token" });
await server.run();

// Client
import { KvsClient } from "@coderbuzz/kvs";
const client = new KvsClient({ url: "http://localhost:3000", token: "my-token" });
await client.set(["greeting"], "hello world");
const value = await client.get(["greeting"]);
// => "hello world"

Documentation

Full API reference, examples, and migration guide: DOCS.md

License

MIT © 2026 Indra Gunawan