redis-eye is a lightweight GUI for Redis that starts a local web interface with a single npx command (v1.1.1). It is released irregularly on npm and provides a zero-config browser-based tool for browsing keys, viewing/editing data, managing connections, monitoring Pub/Sub, and viewing server info. Unlike CLI-based tools like redis-cli, it offers a visual interface with SCAN-based key browsing (safe for production), inline editing for strings/hashes/lists, bulk export, and read-only mode. Requires Node.js >= 18 and a running Redis instance.
npm install redis-eyeNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Launches the redis GUI server and opens browser automatically at localhost.
Use npx redis-eye or install globally with npm install -g redis-eye.
The tool intentionally avoids KEYS; SCAN is safe for production. Iterate over all keys using multiple passes if needed.
Ensure stable network connection; consider using dedicated monitoring tools for critical Pub/Sub.
Run 'npm cache clean --force' and retry, or install globally: npm install -g redis-eye
Kill the process using the port or specify a different port via the --port flag (not yet implemented; manually change port in code).
No dependency data recorded yet.