node-message-bus
v3.3.5
Published
Minimalistic and complete AMQP message bus implementation
Downloads
94
Maintainers
Readme
node-message-bus
Declarative AMQP (RabbitMQ / LavinMQ / ...) support for your NodeJS microservices. A convenient wrapper around ampqlib for RabbitMQ, bringing the most critical features to build with message bus pattern.
Requirements
- NodeJS 18+ (required for native
fetch
whenNODE_ENV=test
)
Features
- Declarative interface, simple in use.
- Built-in, no-external-dependencies support of exponential backoff.
- No-dependencies, out-of-the-box testing with dynamic instances provided by CloudAMQP.
- Simple yet flexible interfaces.
- Pluggable logging library.
Table of Contents
Installation
Install this NPM module:
npm install --save node-message-bus
Configuration
This module can be configured with the following environment variables.
# REQUIRED. Connection URL. Note that this variable is ignored
# when {NODE_MESSAGE_BUS_TESTING_CLOUDAMQP_API_KEY} is set and {NODE_ENV=test}.
NODE_MESSAGE_BUS_CONNECTION_URL=http://admin:admin@rabbitmq
# Optional. Supply the default exchange name and its type. Name is empty by default.
# The library will ensure the default exchange is present when calling {initMessageBus}.
# When publishing messages, if the exchange name is not specified, it is published to
# the default exchange.
# If you're starting a new infrastructure, prefer specifying the "default" exchange name
# with the "topic" type.
NODE_MESSAGE_BUS_DEFAULT_EXCHANGE_NAME=amq.topic
NODE_MESSAGE_BUS_DEFAULT_EXCHANGE_TYPE=topic
# When either NODE_ENV is set to "test", or NODE_MESSAGE_BUS_TESTING_CLOUDAMQP_API_KEY is set
# with the condition that NODE_ENV is not "production", this library switches to a "testing mode"
# and tries to connect to your CloudAMQP account to create a dynamic queue for testing.
# Optional. Define that this is a test environment.
NODE_ENV=test
# Optional. An API key from https://customer.cloudamqp.com/ for testing, used to spin up dynamic
# RabbitMQ instances. Read below to understand how dynamic instances are created.
NODE_MESSAGE_BUS_TESTING_CLOUDAMQP_API_KEY=faf83b09-352f-add3-c2e3-c83212a32344
NODE_MESSAGE_BUS_TESTING_CLOUDAMQP_INSTANCE_LIFETIME=3600000
# To speed up testing, provide a comma-separated list of preferred regions in which CloudAMQP
# instance is going to be created. Defaults to us-west,us-central. In the list of all available
# regions of CloudAMQP, a one with the closest partial string match will be picked.
NODE_MESSAGE_BUS_TESTING_CLOUDAMQP_PREFERRED_REGIONS=eu-central,europe-west
Examples
Below you will find simple copy-paste examples of publisher and consumer.
Publisher
import { initMessageBus, publishMessage } from 'node-message-bus';
// Inits message bus with all defaults. Set NODE_MESSAGE_BUS_CONNECTION_URL env var for connection string.
await initMessageBus();
// Publishes to a default exchange specified via env vars.
await publishMessage({
key: 'worker.test',
body: 'Hello',
});
Consumer
Application init file:
import { initMessageBus } from 'node-message-bus';
// Inits message bus with a new queue, which takes messages from the default exchange.
// Set NODE_MESSAGE_BUS_CONNECTION_URL env var for connection string.
await initMessageBus({
// Global init options
});
Specific consumer handler file:
import { configureMessageBus, consumeMessages } from 'node-message-bus';
await configureMessageBus({
queues: ['test-queue-1'],
bindings: [{ toQueue: 'test-queue-1', routingKey: 'worker.#' }],
});
await consumeMessages('test-queue-1', async ({ body, key }) => {
//
console.log(`Consumed message with routingKey=${key}:`, body);
//
});
or
await consumeMessages(
{
queues: ['test-queue-1'],
bindings: [{ toQueue: 'test-queue-1', routingKey: 'worker.#' }],
},
async ({ body, key }) => {
//
console.log(`Consumed message with routingKey=${key}:`, body);
//
}
);
Usage
Initialize
In JavaScript, you have to call initMessageBus
function to initialize the library with
what this service will listen or push to, before doing anything else. You won't get errors
if you, for instance, publish messages before calling this functions, but publishing will
hang and wait until initMessageBus is called.
import { initMessageBus } from 'node-message-bus';
// All configuration items are OPTIONAL. For just publishing messages to the default exchange, use
// await initMessageBus({}).
// If any of these collide with already defined queues, and properties mismatch, {initMessageBus}
// will throw an error. Prefer defining new queues when migrating.
await initMessageBus({
// Logging function. {logType} is one of these: 'log', 'info', 'warn', 'error'
logger: (logType, message) => console[logType](message),
// Exchanges to configure before start.
exchanges: [
{
name: 'amq.topic',
type: 'topic',
},
],
// Queues to configure before start.
queues: [
{
name: 'test-queue-1',
},
{
name: 'test-queue-with-dead-letter-and-ttl',
options: {
deadLetterExchange: '',
deadLetterRoutingKey: 'something',
messageTtl: 2000,
},
},
{
name: 'test-queue-dead-letter-handler',
},
],
// Bindings to configure before start.
bindings: [
{
toQueue: 'test-queue-1',
routingKey: 'routing-key',
},
{
toQueue: 'test-queue-dead-letter-handler',
routingKey: 'something',
},
],
amqpConfig: {
/* Optional connection configs */
},
});
If you need to define any queues in runtime (which should only be used for testing), use configureMessageBus
,
which has the same API as initMessageBus
.
import { configureMessageBus } from 'node-message-bus';
await configureMessageBus({
/* Same arguments as in {initMessageBus}. */
});
Disconnect
To properly disconnect from a message bus ensuring all messages are ack'ed, use this function. We demonstrate the usage of this function along with node-graceful-shutdown NPM module.
import { onShutdown } from 'node-graceful-shutdown';
import { closeMessageBus } from 'node-message-bus';
// {closeMessageBus} is an async function that will be invoked by node-graceful-shutdown.
onShutdown(closeMessageBus);
Publish messages
Mind to call initMessageBus
for microservices which are publishing only.
import { publishMessage } from 'node-message-bus';
await publishMessage({
key: 'key-1',
body: {
info: 'This will be serialized to JSON,',
or: "you can pass a primitive value to 'data'.",
},
});
You can also publish messages to a single queue (which is not recommended under normal circumstances):
import { publishMessageToQueue } from 'node-message-bus';
await publishMessageToQueue({
queueName: 'queue-1',
body: 'Made in 🇺🇦',
});
In testing scenarios, you can also access a few extra functions that will allow for easier assertions:
import { startApp, stopApp, myAwesomeFunc } from 'build';
import {
getLastPublishedMessages,
getLastRejectedMessages, // Rejected are those which triggered the backoff behavior
getLastConsumedMessages,
clearLastMessages,
} from 'node-message-bus';
before(async () => {
await startApp();
});
after(async () => {
await stopApp();
});
describe('Dummy test', () => {
beforeEach(async () => {
await clearLastMessages();
});
it('tests something', async () => {
await myAwesomeFunc();
expect(getLastPublishedMessages()).to.have.length(2);
expect(getLastConsumedMessages()).to.have.length(2);
expect(getLastRejectedMessages()).to.have.length(0);
});
});
Consume messages
Consumers are typically defined once, globally, per-microservice.
import { consumeMessages } from 'node-message-bus';
await consumeMessages(
'test-queue-1',
async ({ body, key, failThisMessage }) => {
// From the previous example, body is an object { info: "...", or: "..." }.
// Any errors thrown in this code will be logged and will nack the message.
await failThisMessage(
new Error(
'"soft fail" this message, which sends it to the backoff queue.'
)
);
}
);
Sequential AMQP message consumption
If you want a worker (instance!) to consume a maximum of one message at a time from the queue, you can limit it
with a prefetchCount
option for the specific queue (consumer):
import { consumeMessages } from 'node-message-bus';
await consumeMessages(
{
queues: ['test-queue-1'],
/* bindings: also specify bindings here if your queue wasn't bound before. */
prefetchCount: 1,
},
async ({ body }) => {
/* ... */
}
);
Using message types
It is recommended to use node-message-bus
with typed messages, to ensure data integrity during compilation.
You can do it purely with TypeScript:
import { publishMessage, consumeMessages, IMessage } from 'node-message-bus';
// You can declare a message type per routing key.
interface MessageWorkerTaskA
extends IMessage<'worker.task-a', { typed: string }> {}
// or using a generic type,
type MessageWorkerTaskB = IMessage<'worker.task-b', { myData: number }>;
// You can create '@your-company/types' package and have every message type defined in a single place like this.
export type Message = MessageWorkerTaskA | MessageWorkerTaskB;
Then, use the following example to publish and consume typed messages. Both key and body will correspond only to a specific message.
import { Message } from '@your-company/types';
// Publish a message with type.
await publishMessage<Message>({
key: 'worker.task-a',
body: {
typed: 'Hello, world!',
},
});
// Consume message of a type (here we use the union time as an example).
await consumeMessages<Message>(
'my-queue',
async ({ key, body, failThisMessage }) => {
if (key === 'worker.task-a') {
// Handle task A, where {body} is of type MessageWorkerTaskA['body']
} else if (key === 'worker.task-b') {
// Handle task B, where {body} is of type MessageWorkerTaskB['body']
} else {
await failThisMessage();
}
}
);
Other functions
purgeQueue / purgeAllQueues
purgeAllQueues()
is a convenient way to cleanup every defined (in this process) queue before each new test you run.
import { purgeQueue, purgeAllQueues } from 'node-message-bus';
await purgeQueue('test-queue-1');
await purgeAllQueues();
deleteQueue
deleteQueue()
lets you delete a defined queue by name.
import { deleteQueue } from 'node-message-bus';
await deleteQueue('test-queue-1');
Features
Built-in exponential backoff
node-message-bus
features exponential backoff when consuming messages out of the box, with no dependencies.
When consuming a message errors (or you nack
it yourself), the message which caused an error will be ack
nowledged
but sent back to the automatic exponential backoff queue. This queue will be created automatically on failures.
If creating a backoff queue or sending a message to it fails too, the message will be nack
'ed and hence consuming
this message will be retried.
Assuming there's a queue queue-name
, with incoming message routing-key
, automatic exponential backoff queues use
the following naming pattern:
queue-name
(original queue)queue-name.backoff-1s+routing-key
(delayed by 1 seconds)queue-name.backoff-4s+routing-key
(delayed by 4 seconds)queue-name.backoff-16s+routing-key
(delayed by 16 seconds)queue-name.backoff-64s+routing-key
(delayed by 64 seconds)queue-name.backoff-256s+routing-key
(delayed by 256 seconds)queue-name.backoff-1024s+routing-key
(delayed by 1024 seconds)
These queues have TTL and push the message back to the exchange with the same routing key and properties they had before. These queues are not auto-deleted.
Dynamic RabbitMQ instances for testing
If you set the following environment variables,
NODE_ENV=test
NODE_MESSAGE_BUS_TESTING_CLOUDAMQP_API_KEY=<your_api_key>
node-message-bus
will switch to a testing mode and will be using cloudamqp.com to
create hot RabbitMQ instances on initMessageBus
, under the hood. Thus, tests you run will be connected to
a clean RabbitMQ instance.
node-message-bus
create a free plan instances, which should be enough for various testing purposes:
Specifically, when in testing mode, initMessageBus
will perform the following sequence of actions:
- Connect to cloudamqp.com using the provided API key.
- Delete all instances with names
node-message-bus-delete-after-*
, where*
is past the current date (as deleting instances in step5.
can fail). - Create a new instance named
node-message-bus-delete-after-*
, where*
is the current date plus 1 hour (controlled byNODE_MESSAGE_BUS_TESTING_CLOUDAMQP_INSTANCE_LIFETIME
). - Run a test connecting to this instance.
- Delete the created instance during this run
node-message-bus-delete-after-*
.
In case cloudamqp.com is down, tests will fail. But you see yourself that this is a highly available service here.