/aws-sqs-message-queueing

Message Queueing in Node.js with AWS SQS

Primary LanguageJavaScript

Purpose

Sending email confirmations asynchronously through the messaging queue will allow the orders service to continue receiving orders despite the load since it does not have to worry about sending the emails.

Also, in case the mail service goes down, once brought back up, it will continue dispatching emails from the queue, therefore, we won't have to worry about lost orders.


## Learned packages

aws-sdk
body-parser
dotenv
express
nodemailer
npm-run-all
sqs-consumer