Description
Build SQS-based applications without the boilerplate. Just define a function that receives an SQS message and call a callback when the message has been processed.
sqs-consumer alternatives and similar modules
Based on the "Web Frameworks" category.
Alternatively, view sqs-consumer alternatives based on common mentions on social networks and blogs.
-
Nest
A progressive Node.js framework for building efficient, scalable, and enterprise-grade server-side applications with TypeScript/JavaScript ๐ -
Nuxt.js
DISCONTINUED. Nuxt is an intuitive and extendable way to create type-safe, performant and production-grade full-stack web apps and websites with Vue 3. [Moved to: https://github.com/nuxt/nuxt] -
egg
๐ฅ๐ฅ๐ฅ๐ฅ Born to build better enterprise frameworks and apps with Node.js & Koa. https://307.run/eggcode -
AdonisJs Framework
AdonisJS is a TypeScript-first web framework for building web apps and API servers. It comes with support for testing, modern tooling, an ecosystem of official packages, and more. -
Quick Start
๐ A Node.js Serverless Framework for front-end/full-stack developers. Build the application for next decade. Works on AWS, Alibaba Cloud, Tencent Cloud and traditional VM/Container. Super easy integrate with React and Vue. ๐ -
NestJS REST API boilerplate
NestJS boilerplate. Auth, TypeORM, Mongoose, Postgres, MongoDB, Mailing, I18N, Docker. -
Derby
MVC framework making it easy to write realtime, collaborative applications that run in both Node.js and browsers -
ActionHero
Actionhero is a realtime multi-transport nodejs API Server with integrated cluster capabilities and delayed tasks -
Lad
Node.js framework made by a former @expressjs TC and @koajs team member. Built for @forwardemail, @spamscanner, @breejs, @cabinjs, and @lassjs. -
Marble.js
Marble.js - functional reactive Node.js framework for building server-side applications, based on TypeScript and RxJS. -
lychee.js
DISCONTINUED. :seedling: Next-Gen AI-Assisted Isomorphic Application Engine for Embedded, Console, Mobile, Server and Desktop -
Hemera
๐ฌ Writing reliable & fault-tolerant microservices in Node.js https://hemerajs.github.io/hemera/ -
Catberry
Catberry is an isomorphic framework for building universal front-end apps using components, Flux architecture and progressive rendering. -
dawson-cli
DISCONTINUED. A serverless web framework for Node.js on AWS (CloudFormation, CloudFront, API Gateway, Lambda) -
pompelmi
ClamAV antivirus scanning for Node.js โ scan file uploads with a single function call. Zero dependencies. Typed Symbol verdicts. Local or Docker/clamd. -
AdonisJs Application
DISCONTINUED. This repo is the pre-configured project structure to be used for creating ambitious web servers using AdonisJs. -
๐ VitePress Sidebar
๐ VitePress auto sidebar generator plugin. Easy to use and supports advanced customization. -
QueryQL
Easily add filtering, sorting, and pagination to your Node.js REST API through your old friend: the query string! -
Broad Infinite List ยท
A high-performance, bidirectional infinite scroll list component for large list rendering, support React/Vue/Expo. Use case: smoothly chat history, news feed updates, or stream logs in both directions without layout shifts. Best for large scroll list. -
FortJs
A feature-rich Node.js web framework designed for building powerful, scalable, and maintainable web applications.
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of sqs-consumer or a related project?
README
sqs-consumer
Build SQS-based applications without the boilerplate. Just define an async function that handles the SQS message processing.
Installation
npm install sqs-consumer --save
Usage
const { Consumer } = require('sqs-consumer');
const app = Consumer.create({
queueUrl: 'https://sqs.eu-west-1.amazonaws.com/account-id/queue-name',
handleMessage: async (message) => {
// do some work with `message`
}
});
app.on('error', (err) => {
console.error(err.message);
});
app.on('processing_error', (err) => {
console.error(err.message);
});
app.start();
- The queue is polled continuously for messages using long polling.
- Messages are deleted from the queue once the handler function has completed successfully.
- Throwing an error (or returning a rejected promise) from the handler function will cause the message to be left on the queue. An SQS redrive policy can be used to move messages that cannot be processed to a dead letter queue.
- By default messages are processed one at a time โ a new message won't be received until the first one has been processed. To process messages in parallel, use the
batchSizeoption detailed below. - By default, the default Node.js HTTP/HTTPS SQS agent creates a new TCP connection for every new request (AWS SQS documentation). To avoid the cost of establishing a new connection, you can reuse an existing connection by passing a new SQS instance with
keepAlive: true. ```js const { Consumer } = require('sqs-consumer'); const AWS = require('aws-sdk'); const https = require('https');
const app = Consumer.create({
queueUrl: 'https://sqs.eu-west-1.amazonaws.com/account-id/queue-name',
handleMessage: async (message) => {
// do some work with message
},
sqs: new AWS.SQS({
httpOptions: {
agent: new https.Agent({
keepAlive: true
})
}
})
});
app.on('error', (err) => { console.error(err.message); });
app.on('processing_error', (err) => { console.error(err.message); });
app.start();
### Credentials
By default the consumer will look for AWS credentials in the places [specified by the AWS SDK](http://docs.aws.amazon.com/AWSJavaScriptSDK/guide/node-configuring.html#Setting_AWS_Credentials). The simplest option is to export your credentials as environment variables:
```bash
export AWS_SECRET_ACCESS_KEY=...
export AWS_ACCESS_KEY_ID=...
If you need to specify your credentials manually, you can use a pre-configured instance of the AWS SQS client:
const { Consumer } = require('sqs-consumer');
const AWS = require('aws-sdk');
AWS.config.update({
region: 'eu-west-1',
accessKeyId: '...',
secretAccessKey: '...'
});
const app = Consumer.create({
queueUrl: 'https://sqs.eu-west-1.amazonaws.com/account-id/queue-name',
handleMessage: async (message) => {
// ...
},
sqs: new AWS.SQS()
});
app.on('error', (err) => {
console.error(err.message);
});
app.on('processing_error', (err) => {
console.error(err.message);
});
app.on('timeout_error', (err) => {
console.error(err.message);
});
app.start();
API
Consumer.create(options)
Creates a new SQS consumer.
Options
queueUrl- String - The SQS queue URLregion- String - The AWS region (defaulteu-west-1)handleMessage- Function - Anasyncfunction (or function that returns aPromise) to be called whenever a message is received. Receives an SQS message object as it's first argument.handleMessageBatch- Function - Anasyncfunction (or function that returns aPromise) to be called whenever a batch of messages is received. Similar tohandleMessagebut will receive the list of messages, not each message individually. If both are set,handleMessageBatchoverrideshandleMessage.handleMessageTimeout- Number - Time in ms to wait forhandleMessageto process a message before timing out. Emitstimeout_erroron timeout. By default, ifhandleMessagetimes out, the unprocessed message returns to the end of the queue.attributeNames- Array - List of queue attributes to retrieve (i.e.['All', 'ApproximateFirstReceiveTimestamp', 'ApproximateReceiveCount']).messageAttributeNames- Array - List of message attributes to retrieve (i.e.['name', 'address']).batchSize- Number - The number of messages to request from SQS when polling (default1). This cannot be higher than the AWS limit of 10.visibilityTimeout- Number - The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a ReceiveMessage request.heartbeatInterval- Number - The interval (in seconds) between requests to extend the message visibility timeout. On each heartbeat the visibility is extended by addingvisibilityTimeoutto the number of seconds since the start of the handler function. This value must less thanvisibilityTimeout.terminateVisibilityTimeout- Boolean - If true, sets the message visibility timeout to 0 after aprocessing_error(defaults tofalse).waitTimeSeconds- Number - The duration (in seconds) for which the call will wait for a message to arrive in the queue before returning.authenticationErrorTimeout- Number - The duration (in milliseconds) to wait before retrying after an authentication error (defaults to10000).pollingWaitTimeMs- Number - The duration (in milliseconds) to wait before repolling the queue (defaults to0).sqs- Object - An optional AWS SQS object to use if you need to configure the client manuallyshouldDeleteMessages- Boolean - Default totrue, if you don't want the package to delete messages from sqs set this tofalse###consumer.start()
Start polling the queue for messages.
consumer.stop()
Stop polling the queue for messages.
consumer.isRunning
Returns the current polling state of the consumer: true if it is actively polling, false if it is not.
Events
Each consumer is an EventEmitter and emits the following events:
| Event | Params | Description |
|---|---|---|
error |
err, [message] |
Fired when an error occurs interacting with the queue. If the error correlates to a message, that message is included in Params |
processing_error |
err, message |
Fired when an error occurs processing the message. |
timeout_error |
err, message |
Fired when handleMessageTimeout is supplied as an option and if handleMessage times out. |
message_received |
message |
Fired when a message is received. |
message_processed |
message |
Fired when a message is successfully processed and removed from the queue. |
response_processed |
None | Fired after one batch of items (up to batchSize) has been successfully processed. |
stopped |
None | Fired when the consumer finally stops its work. |
empty |
None | Fired when the queue is empty (All messages have been consumed). |
AWS IAM Permissions
Consumer will receive and delete messages from the SQS queue. Ensure sqs:ReceiveMessage, sqs:DeleteMessage, sqs:DeleteMessageBatch, sqs:ChangeMessageVisibility and sqs:ChangeMessageVisibilityBatch access is granted on the queue being consumed.
Contributing
See contributing guidelines.