108 breaking releases

new 0.110.0 Apr 18, 2025
0.108.0 Apr 11, 2025
0.105.0 Mar 28, 2025
0.92.0 Dec 19, 2024
0.4.0 Mar 31, 2023

#1423 in Database interfaces

Download history 285/week @ 2024-12-27 489/week @ 2025-01-03 1021/week @ 2025-01-10 1024/week @ 2025-01-17 747/week @ 2025-01-24 1140/week @ 2025-01-31 805/week @ 2025-02-07 1095/week @ 2025-02-14 1691/week @ 2025-02-21 1373/week @ 2025-02-28 1182/week @ 2025-03-07 1363/week @ 2025-03-14 1202/week @ 2025-03-21 1246/week @ 2025-03-28 1274/week @ 2025-04-04 1177/week @ 2025-04-11

5,066 downloads per month
Used in 31 crates (4 directly)

MIT license

470KB
14K SLoC

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

~176MB
~3.5M SLoC