- π¨ Beautiful UI - Modern design with clean aesthetics
- π Advanced Search & Filtering - Real-time search across keys and values
- π Namespace Management - Create and manage multiple namespaces with ease
- β‘ Real-time Updates - Live synchronization across multiple browser sessions
- π Performance Optimized - Fast and responsive with efficient data handling
- π± Responsive Design - Works perfectly on desktop, tablet, and mobile devices
- π― Intuitive UX - Clean, modern interface with helpful visual feedback
- π§ Developer Friendly - Built with TypeScript and modern web technologies
Optional password protection with session-based authentication
Clean, modern interface for managing your Deno KV database
# Run directly without installation (from npm)
bunx deno-kv-explorer
# OR
npx deno-kv-explorer
# With environment variables
KV_URL=http://localhost:4512 PASSWORD=mysecret bunx deno-kv-explorer# Install from npm
npm install -g deno-kv-explorer
# Then run
deno-kv-explorer
# Or with environment variables
KV_URL=http://localhost:4512 PASSWORD=mysecret deno-kv-explorer# Clone the repository
git clone https://github.com/akshit-wtf/deno-kv-explorer
cd deno-kv-explorer
# Install dependencies
bun install
# Configure environment (optional)
cp .env.example .env
# Edit .env with your settings# Using pre-built image from GitHub Container Registry
docker run -p 4055:4055 \
-e KV_URL=your_kv_url \
-e PASSWORD=your_password \
ghcr.io/akshit-wtf/deno-kv-explorer:latest
# Or with docker-compose
git clone https://github.com/akshit-wtf/deno-kv-explorer
cd deno-kv-explorer
# Edit .env with your settings
docker-compose up -d# Development mode with hot reload
bun run dev
# Production mode
bun start# Using Docker Compose (recommended)
docker-compose up -d
# Or build and run manually
docker build -t deno-kv-explorer .
docker run -p 4055:4055 --env-file .env deno-kv-explorerThe application will be available at http://localhost:4055
Deno KV Explorer is fully responsive and optimized for mobile devices:
- Touch-friendly interface with appropriate button sizes
- Mobile sidebar that slides in/out smoothly
- Responsive layouts that adapt to screen size
- Optimized typography for readability on small screens
Deno KV Explorer is built with modern web technologies:
- Backend: Bun runtime with WebSocket support
- Frontend: Vanilla JavaScript with Tailwind CSS
- Database: Deno KV for persistent storage
- Real-time: WebSocket-based live updates
- Design: Modern UI with glass morphism aesthetics
- Enter a namespace name in the sidebar input
- Press Enter or click "Create"
- The namespace will be created and automatically selected
- Add Entry: Fill in the key and value (JSON format), then click "Add Entry"
- Edit Entry: Click the "Edit" button on any entry to populate the form
- Delete Entry: Click the "Delete" button and confirm the action
- Search: Use the search bar to filter entries by key or value
- Sort: Use the dropdown to sort entries by key or creation time
- Real-time Sync: Changes are instantly visible across all connected sessions
- Search & Filter: Quickly find entries with the built-in search functionality
- Export/Import: Backup and restore your data in JSON format
- Mobile Responsive: Full mobile support with touch-friendly interface
- Docker Ready: Easy deployment with Docker and Docker Compose
- Password Protection: Optional password protection for secure access
- Session Management: Session-based authentication that expires on page reload
Deno KV Explorer supports optional password protection:
# Set password via environment variable
PASSWORD=your_secure_password bunx deno-kv-explorer
# Or in .env file
echo "PASSWORD=your_secure_password" >> .envSecurity Features:
- Session-based authentication
- Password expires on page reload/close
- No persistent login storage
- Optional protection (disabled by default)
Create a .env file from the example:
cp .env.example .envAvailable configuration options:
| Variable | Description | Default |
|---|---|---|
DENO_KV_ACCESS_TOKEN |
Your Deno KV access token | Required |
KV_URL |
Deno KV server URL | http://localhost:4512 |
PORT |
Application port | 4055 |
PASSWORD |
Access password (optional) | Not set (no password) |
NODE_ENV |
Environment mode | development |
For Docker deployments, use the provided docker-compose.yml:
version: '3.8'
services:
deno-kv-explorer:
build: .
ports:
- "4055:4055"
environment:
- DENO_KV_ACCESS_TOKEN=your_token_here
- KV_URL=http://your_kv_server:4512-
Clone and configure:
git clone https://github.com/akshit-wtf/deno-kv-explorer cd deno-kv-explorer cp .env.example .env # Edit .env with your production values
-
Deploy with Docker Compose:
docker-compose up -d
-
Monitor logs:
docker-compose logs -f deno-kv-explorer
The Docker container includes built-in health checks:
- Endpoint:
GET / - Interval: 30 seconds
- Timeout: 10 seconds
- Retries: 3 attempts
To run multiple instances:
docker-compose up -d --scale deno-kv-explorer=3This project is published to npm for easy installation and distribution.
The package is available as a public npm package:
# No special configuration needed for public npm packages
# Install globally
npm install -g deno-kv-explorer
# Or run directly
npx deno-kv-explorer
bunx deno-kv-explorerPublishing is automated via GitHub Actions when a release is created:
- Create a release on GitHub with a version tag (e.g.,
v1.0.1) - GitHub Actions automatically builds and publishes to npm
- Docker images are also built and pushed to GitHub Container Registry
For manual publishing:
# Ensure you're authenticated with npm
npm login
# Publish
npm publishDocker images are available from GitHub Container Registry:
# Pull the latest image
docker pull ghcr.io/akshit-wtf/deno-kv-explorer:latest
# Run the container
docker run -p 4055:4055 ghcr.io/akshit-wtf/deno-kv-explorer:latestdeno-kv-explorer/
βββ index.ts # Main server and WebSocket logic
βββ index.html # Frontend application
βββ package.json # Project configuration
βββ tsconfig.json # TypeScript configuration
βββ Dockerfile # Docker container configuration
βββ docker-compose.yml # Docker Compose setup
βββ .env.example # Environment variables template
βββ .dockerignore # Docker ignore patterns
βββ README.md # Documentation
Deno KV Explorer follows the principles of simplicity and functionality:
- Simplicity: Clean, uncluttered interface
- Precision: Carefully crafted user experience
- Elegance: Beautiful visual design with subtle animations
- Functionality: Every feature serves a clear purpose
| Feature | Preview |
|---|---|
| π Secure Access | ![]() |
| ποΈ Database Management | ![]() |
Experience the modern, intuitive interface designed for productivity
We welcome contributions! Please feel free to submit issues and pull requests.
This project is licensed under the MIT License - see the LICENSE file for details.