Registry / devops / redis-eye

redis-eye

JSON →
library1.1.1jsnpmunverified

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-eye
INSTALL
IMPORT
SIG · REDIS-EYE
R
redis-eye
devopsjavascriptv1.1.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

redis-eye
npx redis-eye
npm install redis-eye && redis-eye
The package exports no JavaScript API; it is a CLI tool meant to be run via npx or global install. Local install without -g will not add the command to PATH.

Launches the redis GUI server and opens browser automatically at localhost.

npx redis-eye
Debug
Known issues
gotchanpm install redis-eye (without -g) installs locally and does not add redis-eye to PATH. Users may erroneously try 'redis-eye' after local install and fail.
fix
Use npx redis-eye or install globally with npm install -g redis-eye.
affects: >=1.0
gotchaThe GUI uses SCAN-based key listing by default, but users relying on KEYS may see incomplete results if they have a large number of keys and SCAN is used with COUNT.
fix
The tool intentionally avoids KEYS; SCAN is safe for production. Iterate over all keys using multiple passes if needed.
affects: >=1.0
gotchaPub/Sub monitoring uses SSE with a poll interval; messages may be lost if the server is overloaded or the connection drops temporarily.
fix
Ensure stable network connection; consider using dedicated monitoring tools for critical Pub/Sub.
affects: >=1.0
Errors
Common errors & fixes
npx: command not found: redis-eye
npm cache issue or network problem prevents fetching the package.
fix
Run 'npm cache clean --force' and retry, or install globally: npm install -g redis-eye
Error: listen EADDRINUSE :::<port>
Default port (8080) is already in use by another process.
fix
Kill the process using the port or specify a different port via the --port flag (not yet implemented; manually change port in code).
Upgrade
Version history
1.1.1latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
redis-eye — npm install redis-eye · libregistry