An open API service indexing awesome lists of open source software.

https://github.com/nestjs-packages/sqs

AWS SQS module for Nest framework (node.js) 👷
https://github.com/nestjs-packages/sqs

nest nestjs queue sqs typescript

Last synced: 6 months ago
JSON representation

AWS SQS module for Nest framework (node.js) 👷

Awesome Lists containing this project

README

          



Nest Logo


@nestjs-packages/sqs





NPM Version


NPM downloads


Package License


codecov coverage

## Description

@nestjs-packages/sqs is a project to make SQS easier to use and control some required flows with NestJS. This module provides decorator-based message handling suited for simple use.

This library internally uses [bbc/sqs-producer](https://github.com/bbc/sqs-producer) and [bbc/sqs-consumer](https://github.com/bbc/sqs-consumer)

## Installation

```sh
$ npm i --save @nestjs-packages/sqs
# or
$ yarn add @nestjs-packages/sqs
```

## Quick Start

### SqsModule

#### forRootAsync

For use SqsModule, You have to set SQS configurations. you can set SQS configurations by forRootAsync method.
after forRootAsync method called, every sqs produers and consumers use SQS configurations returned by forRootAsync useFactory method

```ts
@Module({
imports: [
SqsModule.forRootAsync({
imports: [ConfigModule],
useFactory: (configService) => {
const config: SqsConfigOption = {
region: configService.region,
endpoint: configService.endpoint,
accountNumber: configService.accountNumber,
credentials: {
accessKeyId: configService.accessKeyId,
secretAccessKey: configService.secretAccessKey,
},
};
return new SqsConfig(config);
},
inject: [ConfigService],
}),
],
})
class AppModule {}
```

#### registerQueue

Second you have to register queues. register queues means create sqs-producer and sqs-consumer by queueOptions that passed into registerQueue parameter
default type of queueOption is 'ALL'

```ts
SqsModule.registerQueue(
{
name: 'queueName',
type?: SqsQueueType.Consumer // 'ALL'|'CONSUMER'|'PRODUCER'
consumerOptions?: {},
producerOptions?: {}
},
...
);
```

### consume message

You need to decorate providers and methods in your NestJS providers in order to have them be automatically attached as message(event) handlers for incoming SQS messages

```ts
@SqsProcess(/** name: */ queueName)
export class AppMessageHandler {
@SqsMessageHandler(/** batch: */ false)
public async handleMessage(message: AWS.SQS.Message) {}

@SqsConsumerEventHandler(/** eventName: */ SqsConsumerEvent.PROCESSING_ERROR)
public onProcessingError(error: Error, message: AWS.SQS.Message) {
// report errors here
}
}
```

You need to pass queueName to SqsProcess decorator. unless SqsModule won't register Consumer.
One class can only handle one queue. so if you want to enroll dead letter queue, you have to make new class that handle dead letter queue

### Produce messages

SqsService needs to be injected to produce the message.

```ts
@Injectable()
export class AppService {
public constructor(
private readonly sqsService: SqsService,
) { }

public async dispatchSomething() {
await this.sqsService.send(/** name: */ 'queueName', {
id: 'id',
body: { ... },
groupId: 'groupId',
deduplicationId: 'deduplicationId',
messageAttributes: { ... },
delaySeconds: 0,
});
}
}
```

### Configuration

See [here](https://github.com/DEV-MUGLES/nestjs-sqs/blob/master/lib/sqs.types.ts), and note that we have same configuration as [bbc/sqs-consumer's](https://github.com/bbc/sqs-consumer).
In most time you just need to specify both `name` and `queueUrl` at the minimum requirements.

## License

This project is licensed under the terms of the MIT license.