Gathering detailed insights and metrics for @vercel/sqs-consumer
Gathering detailed insights and metrics for @vercel/sqs-consumer
Gathering detailed insights and metrics for @vercel/sqs-consumer
Gathering detailed insights and metrics for @vercel/sqs-consumer
npm install @vercel/sqs-consumer
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
1,758 Stars
513 Commits
334 Forks
63 Watching
13 Branches
135 Contributors
Updated on 26 Nov 2024
TypeScript (90.67%)
JavaScript (7.41%)
Shell (0.98%)
Gherkin (0.94%)
Cumulative downloads
Total Downloads
Last day
-66.5%
27,305
Compared to previous day
Last week
0.7%
351,660
Compared to previous week
Last month
0.4%
1,380,213
Compared to previous month
Last year
446.8%
4,305,338
Compared to previous year
Build SQS-based applications without the boilerplate. Just define an async function that handles the SQS message processing.
To install this package, simply enter the following command into your terminal (or the variant of whatever package manager you are using):
1npm install sqs-consumer
If you would like to use JSR instead, you can find the package here.
We will only support Node versions that are actively or security supported by the Node team. If you are still using an Node 14, please use a version of this library before the v7 release, if you are using Node 16, please use a version before the v7.3.0 release.
Visit https://bbc.github.io/sqs-consumer/ for the full API documentation.
1import { Consumer } from "sqs-consumer"; 2 3const app = Consumer.create({ 4 queueUrl: "https://sqs.eu-west-1.amazonaws.com/account-id/queue-name", 5 handleMessage: async (message) => { 6 // do some work with `message` 7 }, 8}); 9 10app.on("error", (err) => { 11 console.error(err.message); 12}); 13 14app.on("processing_error", (err) => { 15 console.error(err.message); 16}); 17 18app.start();
batchSize
option detailed here.
handleMessage
and handleMessageBatch
functions will be considered as processed if they return without an error.
handleMessage
or the messages for handleMessageBatch
.
alwaysAcknowledge
option detailed here.By default the consumer will look for AWS credentials in the places specified by the AWS SDK. The simplest option is to export your credentials as environment variables:
1export AWS_SECRET_ACCESS_KEY=... 2export AWS_ACCESS_KEY_ID=...
If you need to specify your credentials manually, you can use a pre-configured instance of the SQS Client client.
1import { Consumer } from "sqs-consumer"; 2import { SQSClient } from "@aws-sdk/client-sqs"; 3 4const app = Consumer.create({ 5 queueUrl: "https://sqs.eu-west-1.amazonaws.com/account-id/queue-name", 6 handleMessage: async (message) => { 7 // ... 8 }, 9 sqs: new SQSClient({ 10 region: "my-region", 11 credentials: { 12 accessKeyId: "yourAccessKey", 13 secretAccessKey: "yourSecret", 14 }, 15 }), 16}); 17 18app.on("error", (err) => { 19 console.error(err.message); 20}); 21 22app.on("processing_error", (err) => { 23 console.error(err.message); 24}); 25 26app.on("timeout_error", (err) => { 27 console.error(err.message); 28}); 29 30app.start();
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.
Consumer.create(options)
Creates a new SQS consumer using the defined options.
consumer.start()
Start polling the queue for messages.
consumer.stop(options)
Stop polling the queue for messages. You can find the options definition here.
By default, the value of abort
is set to false
which means pre existing requests to AWS SQS will still be made until they have concluded. If you would like to abort these requests instead, pass the abort value as true
, like so:
consumer.stop({ abort: true })
consumer.status
Returns the current status of the consumer.
isRunning
- true
if the consumer has been started and not stopped, false
if was not started or if it was stopped.isPolling
- true
if the consumer is actively polling, false
if it is not.Note: This method is not available in versions before v9.0.0 and replaced the method
isRunning
to supply both running and polling states.
consumer.updateOption(option, value)
Updates the provided option with the provided value.
Please note that any update of the option pollingWaitTimeMs
will take effect only on next polling cycle.
You can find out more about this here.
Each consumer is an EventEmitter
and emits these events.
We welcome and appreciate contributions for anyone who would like to take the time to fix a bug or implement a new feature.
But before you get started, please read the contributing guidelines and code of conduct.
SQS Consumer is distributed under the Apache License, Version 2.0, see LICENSE for more information.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
packaging workflow detected
Details
Reason
SAST tool is run on all commits
Details
Reason
license file detected
Details
Reason
3 existing vulnerabilities detected
Details
Reason
3 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 4
Reason
branch protection is not maximal on development and all release branches
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
Found 2/30 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More