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

@pauldeng/node-red-contrib-bullmq

v1.0.2

Published

BullMQ-backed Redis job queue nodes for Node-RED

Readme

@pauldeng/node-red-contrib-bullmq

npm version npm downloads CI OpenSSF Scorecard License: MIT

Node-RED nodes for BullMQ-backed Redis job queues.

This package targets BullMQ 5.80.2 and Node-RED 4.1 or 5.x. It preserves the legacy bull-queue-server, bull cmd, and bull run node types where BullMQ has compatible behavior, and adds bull job, bull events, and bull flow.

Installation

To install - either use the manage palette option in the editor, or change to your Node-RED user directory.

cd ~/.node-red
npm install @pauldeng/node-red-contrib-bullmq

Repository: https://github.com/pauldeng/node-red-contrib-bullmq

Requirements

  • Node-RED 4.1.x or 5.x
  • Node.js 18+ with Node-RED 4.1.x, or Node.js 22.9+ with Node-RED 5.x
  • Redis with maxmemory-policy=noeviction
  • BullMQ 5.80.2

Bull v4 Redis data is not automatically migrated. Drain, retire, or otherwise handle old Bull queues before upgrading the runtime dependency.

Nodes

  • bull-queue-server: shared BullMQ queue and Redis deployment config.
  • bull cmd: message-driven producer and queue administration commands.
  • bull run: BullMQ Worker that emits jobs into a Node-RED flow.
  • bull job: manual acknowledgement and active-job actions for manual bull run flows.
  • bull events: QueueEvents source node for global BullMQ events.
  • bull flow: FlowProducer node for parent/child job trees.

Redis Deployments

Supported deployment modes:

  • Standalone Redis
  • Redis Cluster
  • AWS MemoryDB, configured as Redis Cluster with TLS
  • Redis Sentinel

Authentication can use Redis ACL username/password. TLS supports CA, client certificate, client key, server name, and certificate verification. Cluster and MemoryDB prefixes must contain a hash tag, such as {bull}, to keep queue keys in one Redis Cluster slot for atomic operations.

Legacy Repeat Cron Compatibility

The legacy repeat flow remains supported through BullMQ Job Schedulers:

msg.payload = "gateway-FCC23DFFFE0AA2A8";
msg.cmd = "add";
msg.jobopts = {
  jobId: msg.payload,
  repeat: {
    cron: "30 9,19,29,39,49,59 * * * *",
  },
};
return msg;

The scheduler id is msg.schedulerId when present, otherwise msg.jobopts.jobId. repeat.cron is translated to repeat.pattern; conflicting cron and pattern values are rejected.

Commands

bull cmd reads msg.cmd. The default command is add.

Core supported command families include:

  • add jobs, add bulk jobs, get jobs, retry jobs, remove jobs
  • delayed jobs and delay promotion
  • priorities and priority counts
  • deduplication keys
  • Job Scheduler commands and legacy repeat aliases
  • pause, resume, drain, clean, and stopAndRemoveAllJobs
  • global concurrency and rate limits
  • job logs and Prometheus metrics export

See docs/COMMANDS.md.

Unsupported

| BullMQ feature | Reason | | -------------------------------------- | --------------------------------------------------------------------------------------------------------- | | Sandboxed processors | They bypass the Node-RED flow and downstream acknowledgement model. | | Custom JavaScript backoff strategies | Executable strategy code is not a safe Node-RED message contract. Use built-in fixed/exponential backoff. | | BullMQ Pro features | Pro groups, batches, and observables are not part of the open-source BullMQ dependency. | | Built-in dashboard | Use a dedicated queue UI; this package only provides Node-RED nodes. | | Arbitrary method proxying | Unrestricted method dispatch is hard to validate, document, secure, and test. | | Automatic Bull v4 Redis data migration | Bull and BullMQ do not provide a supported queue-data migration contract. |

Examples

Import examples/example_flow.json into Node-RED. It includes:

  • simple add and run
  • required basecasts scheduled job
  • delayed and prioritized jobs
  • manual acknowledgement
  • QueueEvents
  • parent/child flow producer

The examples do not contain secrets.

Development

npm install
npm test

Use docs/TESTING.md for Docker, Playwright, and MemoryDB test plans. Use docs/CHANGE_WORKFLOW.md before changing behavior.

More Docs