npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

redis-eye

v1.1.1

Published

Lightweight Redis GUI — explore your Redis data with a single npx command

Readme

redis-eye

Lightweight Redis GUI — explore and manage your Redis data with a single npx command.

한국어 문서 보기


Quick Start

No installation required — run directly with npx:

npx redis-eye

Or install globally (recommended for repeated use):

npm install -g redis-eye
redis-eye

Note: npm install redis-eye (without -g) installs locally and does not add redis-eye to your PATH. Use npx or install with -g.

A browser window opens automatically at http://127.0.0.1:<port>.


What It Does

redis-eye launches a local web GUI for Redis. Connect to any Redis instance, browse your keys, and edit data — all from the browser, with zero configuration.

screenshot placeholder screenshot placeholder screenshot placeholder


Features

Connection

  • Connect to any Redis server (host, port, password, DB index)
  • Save and manage named connection profiles (stored locally)
  • Auto-reconnect detection with navigation guard

Key Browser

  • SCAN-based key listing (never uses KEYS — safe for production)
  • Infinite scroll with lazy loading
  • Search by glob pattern (e.g. user:*, session:??:*)
  • Search history dropdown (last 8 patterns)
  • Filter by type: String / Hash / List / Set / ZSet
  • Filter by TTL: show only keys expiring within 5 minutes
  • Real-time TTL countdown with color-coded urgency badges

Data Viewer & Editor

| Type | View | Edit | | ------ | ------------------------------------------------- | ------------------------------------- | | String | Raw value, JSON pretty-print with expand/collapse | Inline textarea, Format JSON button | | Hash | Field/value table | Add, edit, delete individual fields | | List | Indexed table | Edit items, reorder with move up/down | | Set | Tag cloud | — | | ZSet | Score/member table | — |

Key Management

  • Create keys for all 5 types with type-specific forms
  • Rename keys inline (RENAME command)
  • Delete single key with confirmation dialog
  • Bulk delete — select multiple keys and delete at once
  • Bulk export — download the visible key list as JSON (key, type, TTL, value) or CSV (key, type, TTL only)
  • Edit TTL (extend, set, or make permanent)
  • Read-only mode — enable at connect time to disable all write UI (create, edit, delete, rename, TTL change); a persistent badge is shown to prevent accidental writes to production

Database & Server Info

  • Switch between DB 0–15 with key count preview per database
  • Live server info: Redis version, memory usage, connected clients, role, uptime
  • Connection status monitoring — polls every 5 s; shows a Reconnecting banner when the connection is lost and a Reconnected confirmation when it recovers

Pub/Sub Monitor

  • Open from the 📡 button in the dashboard sidebar (/pubsub route)
  • Subscribe to multiple channels simultaneously — each channel gets a unique color
  • Real-time message feed via SSE (Server-Sent Events), retains up to 200 messages
  • Publish test messages from the UI — receiver count shown after delivery
  • Auto-scroll toggle to follow incoming messages

Requirements

  • Node.js >= 18
  • A running Redis instance (local or remote)

Connection Defaults

| Field | Default | | -------- | --------- | | Host | 127.0.0.1 | | Port | 6379 | | Password | (none) | | DB | 0 |


How It Works

npx redis-eye
    │
    ├── Scans ports 3000–3010 for an available port
    ├── Starts an Express server (bound to 127.0.0.1 only)
    ├── Serves the pre-built Vue 3 SPA from dist/
    └── Opens your default browser automatically

The server binds only to 127.0.0.1 — it is never exposed to external networks.


Security Notes

  • The server is local-only (127.0.0.1). External access is not possible by design.
  • Connection passwords are held in server memory only and are never written to disk during an active session.
  • Saved profiles store passwords in plaintext in local storage — avoid saving credentials for sensitive production instances.
  • All key listing uses SCAN (never KEYS) to avoid blocking your Redis server.

CLI Options

redis-eye [--port <number>]

| Option | Description | Default | | -------- | --------------------------------------------- | ------- | | --port | Override the starting port for auto-detection | 7379 |


License

MIT


한국어 문서 보기 →