1.1.1 • Published 7 months ago
@nestjstools/messaging-redis-extension v1.1.1
@nestjstools/messaging-redis-extension
A NestJS library for managing asynchronous and synchronous messages with support for buses, handlers, channels, and consumers. This library simplifies building scalable and decoupled applications by facilitating robust message handling pipelines while ensuring flexibility and reliability.
Documentation
https://nestjstools.gitbook.io/nestjstools-messaging-docs
Installation
npm install @nestjstools/messaging @nestjstools/messaging-redis-extension or
yarn add @nestjstools/messaging @nestjstools/messaging-redis-extensionRedis Integration: Messaging Configuration Example
import {MessagingModule} from '@nestjstools/messaging';
import {SendMessageHandler} from './handlers/send-message.handler';
import {MessagingRedisExtensionModule, RedisChannelConfig} from '@nestjstools/messaging-redis-extension';
@Module({
imports: [
MessagingRedisExtensionModule,
MessagingModule.forRoot({
buses: [
{
name: 'message.bus',
channels: ['my-channel'],
},
{
name: 'command.bus', //The naming is very flexible
channels: ['redis-command'], //be sure if you defined same channels name as you defined below, you can bind multiple channels there, like send message to rabbitmq and redis at the same time
},
{
name: 'event.bus',
channels: ['redis-event'],
},
],
channels: [
new InMemoryChannelConfig({
name: 'my-channel',
middlewares: [],
avoidErrorsForNotExistedHandlers: true,
}),
new RedisChannelConfig({
name: 'redis-command',
middlewares: [],
avoidErrorsForNotExistedHandlers: false,
queue: 'command-queue',
connection: {
port: 6379,
host: '127.0.0.1',
},
}),
new RedisChannelConfig({
name: 'redis-event',
middlewares: [],
avoidErrorsForNotExistedHandlers: true,
queue: 'event-queue',
connection: {
port: 6379,
host: '127.0.0.1',
},
}),
],
debug: true,
}),
],
})
export class AppModule {
}Key Features:
Multiple Message Buses:
- Configure distinct buses for commands, and events:
command.bus(command processing).event.bus(event processing).
- Configure distinct buses for commands, and events:
In-Memory Channel:
- Simple and lightweight channel suitable for non-persistent messaging or testing purposes.
Redis Channels:
- Fully integrated Redis configuration using
RedisChannelConfig.
- Fully integrated Redis configuration using
Channel Details:
connection: Specifies the Redis server connection.queue: Specify a Redis queue name to consume messages from.
Error Handling:
- Use
avoidErrorsForNotExistedHandlersinredis-eventto gracefully handle missing handlers for event messages.
- Use
Debug Mode:
- Enable
debug: trueto assist in monitoring and troubleshooting messages.
- Enable
This configuration provides a solid foundation for integrating redis as part of your messaging system. It facilitates the decoupling of commands, events, and in-memory operations, ensuring reliable and scalable communication across distributed systems.
Configuration options
RedisChannel
RedisChannelConfig
| Property | Description | Default Value |
|---|---|---|
name | Name of the Redis channel (e.g., 'redis-command'). | |
connection | URI for the Redis connection`. | |
queue | The Redis queue to consume messages from (e.g., 'my_app.command'). | |
enableConsumer | Enables or disables the consumer for this channel. | true |
avoidErrorsForNotExistedHandlers | Avoid errors if no handler is available for the message. | false |