← All @molecule/* packages · App templates
@molecule/api-queue-rabbitmqProvider bond · queue · API (Node) · v1.0.1 · Apache-2.0
RabbitMQ queue provider for molecule.dev
npm install @molecule/api-queue-rabbitmqnpm · Source on GitHub · Implements @molecule/api-queue
@molecule/api-queue-rabbitmq is a provider bond on the API (Node) side: it implements the queue core interface (@molecule/api-queue) with a concrete vendor or library behind it.
Your code calls the core; you wire this provider once at startup. Swapping vendors later is one line in that wiring, not a rewrite.
import { setProvider, send, subscribe } from '@molecule/api-queue'
import { provider } from '@molecule/api-queue-rabbitmq'
setProvider(provider) // connects on first operation using RABBITMQ_* env vars
subscribe<{ userId: string }>('emails', async (message) => {
await deliver(message.body) // returning normally acks the message
})
await send('emails', { body: { userId: 'u1' } })Works with: @molecule/api-bond, @molecule/api-i18n, @molecule/api-queue, @molecule/api-secrets
Secrets: RABBITMQ_URL
Auto-generated, AI-first package reference for the molecule.dev ecosystem. It is written to be read by coding agents as much as by people, and is generated from this package's source — edit
src/index.tsJSDoc, not this file.
RabbitMQ queue provider for molecule.dev.
Connects via RABBITMQ_URL (or RABBITMQ_HOST/PORT/USER/PASSWORD/VHOST,
defaulting to amqp://guest:guest@localhost:5672/). The default provider
export connects lazily on first use; queues are asserted durable on demand.
import { setProvider, send, subscribe } from '@molecule/api-queue'
import { provider } from '@molecule/api-queue-rabbitmq'
setProvider(provider) // connects on first operation using RABBITMQ_* env vars
subscribe<{ userId: string }>('emails', async (message) => {
await deliver(message.body) // returning normally acks the message
})
await send('emails', { body: { userId: 'u1' } })
provider
npm install @molecule/api-queue-rabbitmq @molecule/api-bond @molecule/api-i18n @molecule/api-queue @molecule/api-secrets amqplib
npm install -D @types/amqplib
QueueHandle for a named queue, providing send, receive, and subscribe operations.
interface Queue {
/**
* Queue name.
*/
name: string
/**
* Sends a message to the queue.
*/
send<T = unknown>(message: QueueMessage<T>): Promise<string>
/**
* Sends multiple messages to the queue.
*/
sendBatch?<T = unknown>(messages: QueueMessage<T>[]): Promise<string[]>
/**
* Receives messages from the queue.
*/
receive<T = unknown>(options?: ReceiveOptions): Promise<ReceivedMessage<T>[]>
/**
* Subscribes to messages from the queue.
* Returns a function to unsubscribe.
*/
subscribe<T = unknown>(handler: MessageHandler<T>, options?: ReceiveOptions): () => void
/**
* Gets the approximate number of messages in the queue.
*/
size?(): Promise<number>
/**
* Purges all messages from the queue.
*/
purge?(): Promise<void>
}
QueueCreateOptionsOptions for creating a new queue, including FIFO mode, timeouts, retention periods, and dead-letter queue configuration.
interface QueueCreateOptions {
/**
* Whether this is a FIFO queue.
*/
fifo?: boolean
/**
* Default visibility timeout in seconds.
*/
visibilityTimeout?: number
/**
* Message retention period in seconds.
*/
messageRetentionSeconds?: number
/**
* Maximum message size in bytes.
*/
maxMessageSize?: number
/**
* Dead letter queue configuration.
*/
deadLetterQueue?: {
name: string
maxReceiveCount: number
}
}
QueueMessageMessage to be sent to a queue.
interface QueueMessage<T = unknown> {
/**
* Message payload.
*/
body: T
/**
* Message ID (auto-generated if not provided).
*/
id?: string
/**
* Delay in seconds before the message becomes visible.
*/
delaySeconds?: number
/**
* Message attributes/headers.
*/
attributes?: Record<string, string | number | boolean>
/**
* Message group ID (for FIFO queues).
*/
groupId?: string
/**
* Deduplication ID (for FIFO queues).
*/
deduplicationId?: string
}
QueueProviderQueue provider interface that all queue bond packages must implement. Provides queue handle creation and optional queue management operations.
interface QueueProvider {
/**
* Gets or creates a queue by name.
*/
queue(name: string): Queue
/**
* Lists all available queues.
*/
listQueues?(): Promise<string[]>
/**
* Creates a new queue.
*/
createQueue?(name: string, options?: QueueCreateOptions): Promise<Queue>
/**
* Deletes a queue.
*/
deleteQueue?(name: string): Promise<void>
/**
* Closes all connections.
*/
close?(): Promise<void>
}
RabbitMQOptionsOptions for creating a RabbitMQ queue provider.
interface RabbitMQOptions {
url?: string
host?: string
port?: number
username?: string
password?: string
vhost?: string
prefetch?: number
}
ReceivedMessageReceived message from a queue.
interface ReceivedMessage<T = unknown> {
/**
* Message ID.
*/
id: string
/**
* Message payload.
*/
body: T
/**
* Receipt handle for acknowledging the message.
*/
receiptHandle: string
/**
* Message attributes/headers.
*/
attributes?: Record<string, string | number | boolean>
/**
* Number of times this message has been received.
*/
receiveCount?: number
/**
* Timestamp when the message was sent.
*/
sentTimestamp?: Date
/**
* Acknowledges (deletes) the message from the queue.
*/
ack(): Promise<void>
/**
* Rejects the message (returns it to the queue).
*/
nack?(): Promise<void>
}
ReceiveOptionsOptions for receiving messages.
interface ReceiveOptions {
/**
* Maximum number of messages to receive.
*/
maxMessages?: number
/**
* Visibility timeout in seconds.
*/
visibilityTimeout?: number
/**
* Wait time in seconds for long polling.
*/
waitTimeSeconds?: number
}
MessageHandlerAsync callback invoked for each message received from a queue subscription.
type MessageHandler<T = unknown> = (message: ReceivedMessage<T>) => Promise<void>
createProvider(options)Creates a RabbitMQ queue provider by connecting to an AMQP server and opening a channel.
Connection URL is built from RABBITMQ_URL or individual RABBITMQ_HOST/PORT/USER/PASSWORD/VHOST env vars.
The FIRST connection attempt fails fast (rejects) so a bad URL/unreachable broker is caught
immediately at boot — matching the fail-fast pattern used elsewhere in the fleet. Once connected,
a dropped connection OR a channel-killing broker error (e.g. re-asserting a queue with mismatched
arguments) is recovered automatically with bounded exponential backoff, and every active
subscribe() consumer is re-attached to the fresh channel — a single failure no longer
permanently breaks every queue for the life of the process.
function createProvider(options?: RabbitMQOptions): Promise<QueueProvider>
options — Optional connection and prefetch configuration. Falls back to environment variables.Returns: A QueueProvider that manages RabbitMQ queues over the established AMQP channel.
connectAlias for createProvider. Connects to RabbitMQ and returns a QueueProvider.
const connect: (options?: RabbitMQOptions) => Promise<QueueProvider>
providerDefault lazily-initialized RabbitMQ provider. The AMQP connection is established on first method call. All methods proxy through to the real provider once connected. Queue operations issued before the connection is ready are deferred automatically.
const provider: QueueProvider
queueRabbitmqSecretDefinitionsSecret definitions required by the RabbitMQ queue bond.
const queueRabbitmqSecretDefinitions: SecretDefinition[]
Implements @molecule/api-queue interface.
Setup function to register this provider with the core interface:
import { setProvider } from '@molecule/api-queue'
import { provider } from '@molecule/api-queue-rabbitmq'
export function setupQueueRabbitmq(): void {
setProvider(provider)
}
Peer dependencies:
@molecule/api-bond ^1.0.1@molecule/api-i18n ^1.0.1@molecule/api-queue ^1.0.1@molecule/api-secrets ^1.0.1RABBITMQ_URL (required) — RabbitMQ connection URL — default: amqp://localhost
amqp://guest:guest@localhost:5672@molecule/api-bond@molecule/api-i18n@molecule/api-queue@molecule/api-secretsamqplibDelivery semantics (at-least-once — handlers must be idempotent):
ack()/nack() are only
needed to settle early, and are idempotent (a second settlement of the same
delivery is a safe no-op — a raw double-ack would close the AMQP channel).createQueue(name, { deadLetterQueue })) — otherwise it is
DROPPED. Configure a dead-letter queue for anything you cannot afford to lose.delaySeconds works out of the box — no rabbitmq-delayed-message-exchange
plugin required. A message with delaySeconds is parked on a
per-delay wait queue (named <queue>.delay.<ms>, created on demand)
whose x-message-ttl equals the delay; once the TTL expires the broker
dead-letters it back to the real queue via the default exchange. Every
distinct delay value gets its own wait queue, so mixed delays on the
same logical queue never hit RabbitMQ's "TTL only expires at the head"
staggering gotcha. The wait queues are an implementation detail — do
not publish to them directly, and expect one extra durable queue per
distinct delaySeconds value your app actually uses.subscribe() consumer is re-attached once reconnected — a transient
broker restart no longer permanently breaks every queue for the life of
the process. The very FIRST connection attempt (inside createProvider)
still fails fast (rejects) so a bad RABBITMQ_URL is caught immediately
at boot instead of retrying silently forever.receive() is pull-based (channel.get); ReceiveOptions.waitTimeSeconds
and visibilityTimeout are not supported by AMQP semantics — unacked
messages return to the queue when the channel/connection closes, not on a
timer.Integration checklist — exercise the REAL behavior end-to-end (drive the app action that enqueues/consumes work in the live preview, no mocks), adapt each item to this app's actual screens/flows, and check every box off one by one. A box you can't check is an integration bug to fix — not a skip:
send() returns a message
id immediately and the request/response does NOT block on the job. The #1
trap: the executor awaits the heavy work inline (defeating the queue);
confirm the triggering UI action returns quickly and the work happens in the
background.subscribe() consumer (a
MessageHandler) is wired and running, so the message's real side effect
(email sent, file processed, notification delivered — whatever the app does)
actually appears in the UI/data. A message enqueued with no worker wired is
the silent failure.ReceivedMessage.body the handler sees
equals the QueueMessage.body that was sent, with no dropped or renamed
fields.QueueCreateOptions.deadLetterQueue.maxReceiveCount, tracked via
receiveCount) or dead-lettered, never silently lost. Delivery is
at-least-once, so the handler is idempotent (dedupe on the job/record id) — a
redelivery must not double-charge or double-send.QueueMessage.groupId/fifo) or exactly-once delivery unless the
bonded provider actually guarantees it.body carries only the ids/refs the job
needs (never a secret or stale authority); the consumer re-loads and
re-scopes on the CURRENT data (owner id from body, re-checked server-side)
so one user's job cannot act on another user's resource.Translation strings are provided by @molecule/api-locales-queue-rabbitmq.