@event-bus-manager/bullmq
v0.1.15
Published
BullMQ transport for Event Bus
Readme
@event-bus-manager/bullmq
Redis-backed transport for Event Bus Manager using bullmq.
Installation
npm install @event-bus-manager/core @event-bus-manager/bullmq bullmqConfiguration
Requires redis configuration (host and port) in the config object.
Usage
import { createEventBus } from '@event-bus-manager/core';
import '@event-bus-manager/bullmq'; // Auto-registers 'bullmq' type
const bus = createEventBus('bullmq', {
redis: { host: 'localhost', port: 6379 }
});