88 breaking releases

new 0.90.0 Dec 11, 2024
0.88.0 Nov 28, 2024
0.72.0 Jul 31, 2024
0.51.0 Mar 28, 2024
0.4.0 Mar 31, 2023

#1558 in Database interfaces

Download history 846/week @ 2024-08-21 864/week @ 2024-08-28 893/week @ 2024-09-04 759/week @ 2024-09-11 868/week @ 2024-09-18 936/week @ 2024-09-25 1363/week @ 2024-10-02 1218/week @ 2024-10-09 1213/week @ 2024-10-16 1123/week @ 2024-10-23 1013/week @ 2024-10-30 1152/week @ 2024-11-06 667/week @ 2024-11-13 1083/week @ 2024-11-20 1125/week @ 2024-11-27 774/week @ 2024-12-04

3,780 downloads per month
Used in 25 crates (4 directly)

MIT license

475KB
13K SLoC

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

~144MB
~3M SLoC