Visual Redis testing tool - test your local Redis installation
npm install redis-viewA visual tool to test your local Redis installation from the browser.
``bash`
npx redis-view
That's it! This will:
1. Start a local server on port 3000
2. Open your browser automatically
3. Let you connect to Redis and test key/value operations
- Connect to any Redis instance (configurable host and port)
- Visual connection status indicator
- Set, view, and delete key/value pairs
- CLI Commands tab showing equivalent redis-cli commands
`bash`
PORT=8080 npx redis-view
The UI lets you specify any Redis host and port. Default is localhost:6379.
`bash``
git clone https://github.com/your-username/redis-view
cd redis-view
pnpm install
pnpm start # Run the CLI
pnpm dev # Run with auto-restart on changes
- Hono - Web framework
- ioredis - Redis client
- petite-vue - Lightweight Vue for the UI
- Tailwind CSS - Styling via CDN
ISC