Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/keydb/mod.ts>Keydb#get

Simple Key-value storage module with support for multiple database backends.
Latest
method Keydb.prototype.get
import { Keydb } from "https://deno.land/x/keydb@1.0.0/mod.ts";

Get a Value by Key name.

Type Parameters

optional
T = any

Parameters

key: string

Name of Key to get Value.

Returns

Promise<T | undefined>