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

bullmq-dash

v0.1.3

Published

Terminal UI dashboard for BullMQ queue monitoring

Readme

bullmq-dash

Dashboard for monitoring BullMQ

Features

  • Real-time monitoring - Watch queues and jobs update live with configurable polling
  • Queue overview - View all BullMQ queues with job counts and status
  • Job inspection - Browse jobs by status, view details, data, and error stacktraces
  • Scheduler monitoring - View Job Schedulers (repeatable jobs) with patterns, iterations, and job history
  • Job management - Add, cancel, delete, and retry jobs directly from the dashboard
  • Global metrics - Track enqueue/dequeue rates across all queues

Requirements

  • Bun >= 1.0.0
  • Redis server with BullMQ queues

Installation

# Install globally via npm
npm install -g bullmq-dash

# Or use bunx/npx to run directly
bunx bullmq-dash
npx bullmq-dash

Usage

Quick Start

# Interactive setup (prompts for Redis connection)
bullmq-dash

# Connect with CLI options
bullmq-dash --redis-host localhost --redis-port 6379

# Or use environment variables
export REDIS_HOST=localhost
export REDIS_PORT=6379
bullmq-dash

CLI Options

bullmq-dash [options]

Options:
  --redis-host <host>      Redis host (default: localhost)
  --redis-port <port>      Redis port (default: 6379)
  --redis-password <pass>  Redis password
  --redis-db <db>          Redis database number (default: 0)
  --poll-interval <ms>     Polling interval in milliseconds (default: 3000)
  --queues <names>         Comma-separated queue names to monitor
  -v, --version            Show version
  -h, --help               Show help

Examples

# Interactive setup
bullmq-dash

# Connect to remote Redis
bullmq-dash --redis-host 192.168.1.100 --redis-port 6380

# Connect with password
bullmq-dash --redis-host redis.example.com --redis-password secret

# Monitor specific queues only
bullmq-dash --queues email,notifications,payments

# Custom polling interval (5 seconds)
bullmq-dash --poll-interval 5000

Keyboard Shortcuts

Navigation

| Key | Action | | --------- | ----------------------------------- | | j / | Move down | | k / | Move up | | Tab | Switch between queues and jobs pane | | / | Previous/next page (in job list) |

Actions

| Key | Action | | -------------- | ------------------- | | Enter | View job details | | d | Delete selected job | | r | Refresh data | | q / Ctrl+C | Quit |

Job Status Filter

| Key | Status | | --- | ------------ | | 1 | Latest (all) | | 2 | Waiting | | 3 | Active | | 4 | Completed | | 5 | Failed | | 6 | Delayed | | 7 | Scheduled |

Scheduler View (Key 7)

When viewing scheduled jobs, the job list shows all Job Schedulers (repeatable jobs):

| Key | Action | | ------- | ----------------------------------------- | | Enter | View scheduler details | | j | Jump to next delayed job (in detail view) |

The scheduler detail modal shows:

  • Basic info: Key, name, pattern/interval, timezone
  • Statistics: Iterations count, limits, created/next/end dates
  • Job template: Default job data and options
  • Next delayed job: Preview of the next job to be executed
  • Recent history: Last 10 completed/failed jobs from this scheduler

Metrics Bar

| Metric | Description | | ------ | ------------------------------ | | QUEUES | Total number of queues | | WAIT | Jobs waiting to be processed | | ACTIVE | Jobs currently being processed | | DONE | Completed jobs | | FAIL | Failed jobs | | DELAY | Delayed jobs | | ENQ | Jobs enqueued per minute | | DEQ | Jobs dequeued per minute |

Development

Environment Variables

Create a .env file or set environment variables:

# Redis connection
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=your_password    # Optional
REDIS_DB=0                      # Optional, default: 0

# Polling interval in milliseconds
POLL_INTERVAL=3000              # Optional, default: 3000

# Filter specific queues (comma-separated)
QUEUE_NAMES=queue1,queue2       # Optional, monitors all queues if not set

Scripts

# Run in development mode
bun run dev

# Type check
bun run typecheck

# Lint
bun run lint

# Format
bun run format

# Build for production
bun run build

# Run production build
bun run start

Tech Stack

Color Theme

bullmq-dash uses the Catppuccin Mocha color palette for a modern, easy-on-the-eyes aesthetic:

Related Projects

  • BullMQ - Premium Message Queue for Node.js
  • Bull Board - Web-based dashboard for BullMQ

License

MIT