A command-line interface tool that allows you to explore, manage, and manipulate local Deno KV database files.
Deno KV is a built-in key-value database for Deno applications that provides a simple, fast, and reliable way to store and retrieve data. It uses SQLite under the hood and supports features like atomic transactions, versioning, and range queries.
curl -fsSL https://raw.githubusercontent.com/davrodpin/denoro/main/install.sh | sh
# Clone the repository
git clone https://github.com/davrodpin/denoro.git
cd denoro
# Build the project
deno task build:dev
- Go to The Deno Deploy Dashboard, click on your project and then on the KV tab
- The KV Database page has a section called
Connect to this database from Deno CLI
which contains the address to access the datatabase. Copy it. - Set the
DENORO_DB_PATH
environment variable with the address you copied - You also need to configured the
DENO_KV_ACCESS_TOKEN
environment variables with a Deno Depoy access token. You can find more info on how to create one accessing this page.