@redis-dev-panel/cli
v1.1.5
Published
CLI for Redis Dev Panel — npx redis-dev-panel
Maintainers
Readme
@redis-dev-panel/cli
Zero-install CLI for Redis Dev Panel. Run with
npx— no global install needed.
Launch a full visual Redis debugger from your terminal in one command. No installation, no config files, no Docker.
Usage
npx @redis-dev-panel/cli startOpens the panel at http://127.0.0.1:5174.
Commands
start — Launch the panel
| Option | Default | Description |
|--------|---------|-------------|
| --url <url> | redis://localhost:6379 | Redis connection URL |
| --port <port> | 5174 | Port to run the panel on |
| --host <host> | 127.0.0.1 | Host to bind to |
| --token <token> | — | Bearer token to protect the panel |
| --open | false | Auto-open browser on start |
npx @redis-dev-panel/cli start
npx @redis-dev-panel/cli start --url redis://:password@localhost:6379
npx @redis-dev-panel/cli start --url rediss://myhost:6380
npx @redis-dev-panel/cli start --port 8080 --open
npx @redis-dev-panel/cli start --token supersecretcheck — Test Redis connectivity
Tests the connection and exits. Exit codes: 0 = reachable, 1 = failed.
npx @redis-dev-panel/cli check
npx @redis-dev-panel/cli check --url redis://staging.internal:6379
npx @redis-dev-panel/cli check && npm run devEnvironment variables
REDIS_URL=redis://localhost:6379
PORT=5174
HOST=127.0.0.1
AUTH_TOKEN=your-secret
NODE_ENV=developmentWhat you get
| Feature | Description | |---------|-------------| | 🔍 Key Explorer | Browse all key types — string, hash, list, set, zset, stream | | 📡 Live Monitor | Stream every Redis command in real-time | | 🔔 Pub/Sub Inspector | Subscribe to channels, publish test messages | | ⏱ Expiring Keys | See keys about to expire with a TTL heatmap | | 📊 Metrics | Live memory, ops/sec, hit rate charts | | 🔗 Multi-Connection | Switch between Redis instances at runtime |
Security
- Binds to
127.0.0.1— not reachable from the network - Blocked when
NODE_ENV=production - Use
--tokenon shared machines
Related
@redis-dev-panel/server— embed the panel in your Node.js app@redis-dev-panel/core— Redis abstraction engine
License
MIT
