/deno_replit_db

Primary LanguageTypeScriptOtherNOASSERTION

deno-replit-db

Deno port of https://github.com/replit/database-node

Usage

import { Client } from "https://denopkg.com/tebuevd/deno_replit_db/index.ts";

const client = new Client();

await client.set("123", 123);
await client.get("123");