55 breaking releases

new 0.56.0 Apr 25, 2024
0.54.0 Apr 12, 2024
0.51.0 Mar 28, 2024
0.37.0 Dec 21, 2023
0.4.0 Mar 31, 2023

#2030 in Database interfaces

Download history 545/week @ 2024-01-03 720/week @ 2024-01-10 762/week @ 2024-01-17 778/week @ 2024-01-24 960/week @ 2024-01-31 664/week @ 2024-02-07 757/week @ 2024-02-14 1158/week @ 2024-02-21 1086/week @ 2024-02-28 923/week @ 2024-03-06 832/week @ 2024-03-13 746/week @ 2024-03-20 1124/week @ 2024-03-27 720/week @ 2024-04-03 1155/week @ 2024-04-10 650/week @ 2024-04-17

3,782 downloads per month
Used in 12 crates (via deno_runtime)

MIT license

3MB
76K SLoC

TypeScript 38K SLoC // 0.2% comments JavaScript 23K SLoC // 0.1% comments Rust 15K SLoC // 0.5% comments

deno_kv

This crate provides a key/value store for Deno. For an overview of Deno KV, please read the manual.

Storage Backends

Deno KV has a pluggable storage interface that supports multiple backends:

  • SQLite - backed by a local SQLite database. This backend is suitable for development and is the default when running locally. It is implemented in the denokv_sqlite crate.
  • Remote - backed by a remote service that implements the KV Connect protocol, for example Deno Deploy.

Additional backends can be added by implementing the Database trait.

KV Connect

The KV Connect protocol allows the Deno CLI to communicate with a remote KV database. The specification for the protocol, and the protobuf definitions can be found in the denokv repository, under the proto directory.

Dependencies

~165MB
~3.5M SLoC