Skip to main content

Keydb

Simple Key-value storage module with support for multiple database backends - with a common Promise-based interface for all. Heavily inspired from Node.js Keyv.

Features

  • Supports all JSON types, Buffers and Map.
  • Multiple database backends can be integrated - and custom ones too.
  • Supports TTL - making it suitable for persistent cache.

Import

Note: It’s suggested to import specific Adapter files instead of mod.ts, since it’ll cache ALL adapters and their driver dependencies!

Usage

import { Keydb } from "https://deno.land/x/keydb/sqlite.ts";

const db = new Keydb("sqlite://database.sqlite"); // or new Keydb(new SqliteAdapter("database.sqlite"))

await db.set('foo', 'expires in 1 second', 1000);
await db.set('foo', 'never expires');
await db.get('foo'); // 'never expires'
await db.delete('foo'); // true
await db.clear(); // wipes out all keys!

Adapters

These are currently supported official Adapters.

Database Import
SQLIte Here
Postgres Here

Contributing

You’re always welcome to contribute!

  • We use deno fmt to format code.
  • We use deno lint for linting.

License

See LICENSE for more info.

Copyright 2021 @ DjDeveloperr