Start your SaaS easily and quickly with this free, scalable, production-ready template.
v0.7.0 (last commit 1 weeks ago)
“The simplicity of setup, the readability of code, everything that I need nicely packed.”
const kv = await Deno.openKv();
const user = (await kv<User>.get(["user", "1"])).value!;
// {
// "id": "1",
// "email": "[email protected]",
// "name": "andy",
// "password": "12345"
// }