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

@aios-medical/bullmq-dashboard-ui

v1.0.4

Published

Modern React dashboard UI for monitoring BullMQ and Bull queues.

Readme

@aios-medical/bullmq-dashboard-ui

Modern React UI for the AIOS BullMQ Dashboard. Built with React 19, Tailwind CSS v4, TanStack Query, and React Router 7.

Installation

npm install @aios-medical/bullmq-dashboard-ui
# or
yarn add @aios-medical/bullmq-dashboard-ui
# or
pnpm add @aios-medical/bullmq-dashboard-ui

Overview

This package provides a modern, professional user interface for monitoring Bull and BullMQ queues. It's distributed as a pre-built static bundle that gets served by the server adapters (Express or NestJS).

Note: This package is not intended to be used as a React component library. It's a pre-built UI that's automatically integrated when you use the server adapters.

Features

  • Modern Design: Dark-first palette with light/dark/system theme support
  • Real-time Monitoring: Live queue statistics and job status updates
  • Interactive Charts: Visual representation of queue performance
  • Job Management: View, retry, promote, and clean jobs
  • Queue Controls: Pause, resume, and manage queue settings
  • Responsive Layout: Works on desktop and mobile devices
  • Settings Panel: Customize polling interval, theme, and preferences
  • Status Filtering: Filter jobs by status (active, waiting, completed, failed, etc.)
  • Search: Search jobs by ID or data

Screenshots

Queue detail

Job detail

Job actions

Settings

Integration

The UI is automatically integrated when you use the server adapters. You don't need to directly import or configure this package.

With Express

import { createDashboard } from '@aios-medical/bullmq-dashboard-api';
import { BullMQAdapter } from '@aios-medical/bullmq-dashboard-api/bullMQAdapter';
import { ExpressAdapter } from '@aios-medical/bullmq-dashboard-express';
import { Queue } from 'bullmq';

const queue = new Queue('my-queue', { connection: { host: 'localhost', port: 6379 } });

const serverAdapter = new ExpressAdapter();
serverAdapter.setBasePath('/admin/queues');

createDashboard({
  queues: [new BullMQAdapter(queue)],
  serverAdapter,
  options: {
    uiConfig: {
      title: 'My Queue Dashboard',
      subtitle: 'Production',
    },
  },
});

app.use('/admin/queues', serverAdapter.getRouter());

With NestJS

import { Module } from '@nestjs/common';
import { AIOSBullMQDashboardModule } from '@aios-medical/bullmq-dashboard-nestjs';
import { BullAdapter } from '@aios-medical/bullmq-dashboard-api/bullAdapter';
import { ExpressAdapter } from '@aios-medical/bullmq-dashboard-express';

@Module({
  imports: [
    AIOSBullMQDashboardModule.forRoot({
      route: '/queues',
      adapter: ExpressAdapter,
      dashboardOptions: {
        uiConfig: {
          title: 'My Queues',
          subtitle: 'production',
          environment: { label: 'Production', color: '#ef4444' },
        },
      },
    }),
    AIOSBullMQDashboardModule.forFeature(
      { name: 'emails', adapter: BullAdapter, options: { displayName: 'Emails' } },
    ),
  ],
})
export class AppModule {}

Configuration

The UI can be configured through the uiConfig option when creating the dashboard:

createDashboard({
  queues: [new BullMQAdapter(queue)],
  serverAdapter,
  options: {
    uiConfig: {
      title: 'My Dashboard',              // Dashboard title
      subtitle: 'Production',             // Optional subtitle
      favIcon: {                          // Custom favicon
        default: 'custom-icon.svg',
        alternative: 'custom-favicon.png',
      },
      environment: {                      // Environment badge
        label: 'Production',
        color: '#ef4444',
        textColor: '#ffffff',
      },
      pollingInterval: {
        forceInterval: 5000,              // Force specific polling interval (ms)
        showSetting: true,                // Allow users to change polling interval
      },
      miscLinks: [                        // Additional links in header
        { text: 'Documentation', url: 'https://docs.example.com' },
        { text: 'Support', url: 'https://support.example.com' },
      ],
      hideRedisDetails: false,            // Hide Redis connection information
    },
  },
});

UI Structure

The dashboard consists of several main views:

  • Overview Page: Shows all queues with their status, job counts, and health metrics
  • Queue Detail Page: Detailed view of a specific queue with jobs list
  • Job Detail Page: Individual job inspection with logs, data, and actions
  • Settings Page: User preferences for theme, polling interval, and other settings

Tech Stack

  • React 19: Latest React with concurrent features
  • Vite 6: Fast build tool and dev server
  • Tailwind CSS v4: Utility-first CSS framework
  • TanStack Query v5: Data fetching and caching
  • React Router 7: Client-side routing
  • Radix UI: Accessible UI primitives
  • Recharts: Charting library
  • Lucide React: Icon library

Development

If you want to contribute to the UI or run it locally for development:

cd packages/ui
yarn install
yarn dev

The dev server runs on http://localhost:9000 and proxies /api requests to a backend running on port 3000.

Browser Support

  • Chrome/Edge (latest)
  • Firefox (latest)
  • Safari (latest)

License

MIT

Related Packages