92 breaking releases

new 0.94.0 Jan 16, 2025
0.92.0 Dec 19, 2024
0.88.0 Nov 28, 2024
0.72.0 Jul 31, 2024
0.4.0 Mar 31, 2023

#1833 in Database interfaces

Download history 1203/week @ 2024-09-26 1227/week @ 2024-10-03 1108/week @ 2024-10-10 1166/week @ 2024-10-17 1264/week @ 2024-10-24 1027/week @ 2024-10-31 967/week @ 2024-11-07 687/week @ 2024-11-14 1110/week @ 2024-11-21 1211/week @ 2024-11-28 1313/week @ 2024-12-05 1028/week @ 2024-12-12 637/week @ 2024-12-19 271/week @ 2024-12-26 417/week @ 2025-01-02 872/week @ 2025-01-09

2,370 downloads per month
Used in 24 crates (4 directly)

MIT license

480KB
14K SLoC

Rust 10K 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

~165MB
~3.5M SLoC