74 breaking releases

new 0.76.0 Sep 4, 2024
0.74.0 Aug 22, 2024
0.72.0 Jul 31, 2024
0.51.0 Mar 28, 2024
0.4.0 Mar 31, 2023

#1810 in Database interfaces

Download history 1082/week @ 2024-05-15 786/week @ 2024-05-22 854/week @ 2024-05-29 818/week @ 2024-06-05 1228/week @ 2024-06-12 1813/week @ 2024-06-19 624/week @ 2024-06-26 727/week @ 2024-07-03 1147/week @ 2024-07-10 588/week @ 2024-07-17 916/week @ 2024-07-24 958/week @ 2024-07-31 434/week @ 2024-08-07 403/week @ 2024-08-14 846/week @ 2024-08-21 786/week @ 2024-08-28

2,568 downloads per month
Used in 17 crates (2 directly)

MIT license

410KB
11K SLoC

Rust 7.5K SLoC // 0.0% comments JavaScript 3K SLoC // 0.2% comments TypeScript 1K SLoC // 0.2% 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

~136MB
~3M SLoC