nestjs-aws-sqs

conexion a amazon aws, sqs microservice strategy, SQS CONSUMER

Usage no npm install needed!

<script type="module">
  import nestjsAwsSqs from 'https://cdn.skypack.dev/nestjs-aws-sqs';
</script>

README

Nest Logo

Module for aws services (SQS CONSUMER)

Package License semantic-release

SQS CONSUMER NPM AWS SERVICES

install

yarn add @nestjs/microservices

import

main.ts

import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import {MicroserviceOptions} from "@nestjs/microservices";
import {AwsCloudSqsServer} from "nestjs-aws-sqs";

async function bootstrap() {
    const app = await NestFactory.createMicroservice<MicroserviceOptions>(
        AppModule,
            {
                strategy: new AwsCloudSqsServer({
                    params:{
                        MaxNumberOfMessages: 1,
                        MessageAttributeNames: ["All"],
                        QueueUrl: "QueueUrl",
                        VisibilityTimeout: 30,
                        WaitTimeSeconds: 0,
                    },
                    conexion:{
                        channel: 'notificaions',
                        refresh: 500, // ms
                        region: 'region'
                    }
                }),
            },
    );
    app.listen(() => console.log('Microservice is listening'));
}
bootstrap();