Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@meadow/sqs
Advanced tools
Promise/JSON based client for Amazon SQS with automatic long-polling.
Promise/JSON based client for Amazon SQS with automatic long-polling.
npm install @meadow/sqs --save
Create a client:
const sqs = require('@meadow/sqs');
const client = new sqs({
region: 'us-west-2',
accessKeyId: 'AKFOOBAR',
secretAccessKey: 'barbaz',
queue: 'https://sqs.us-west-2.amazonaws.com/foobar/barbaz'
});
Send a message:
client.sendMessage({
type: 'ACTION_TYPE',
payload: {
foo: 'bar'
}
});
Long poll the queue for messages:
client.pollQueue({ VisibilityTimeout: 600 }, function (message) {
console.log(message);
return new Promise(function (resolve) {
// Perform the work for this message
resolve();
});
});
Everything is built around promises and JSON. Amazon SQS only supports message bodies as strings, but this client will transform that to and from JSON for you automatically. When polling the queue, @meadow/sqs
expects that you return a promise. When that promise resolves, the message will automatically be deleted from the SQS queue. If the promise that you returned throws an error, the VisibilityTimeout
of the message will be set to 0 so the queue can receive it again for re-processing.
When calling new sqs()
you may pass in an argument of options like this: new sqs({ visibilityTimeoutOnError: 60 })
. The available options are:
visibilityTimeoutOnError
- When the pollQueue
handler throws an error, the visibility timeout of the message will be set to this valuepreventVisibiltyTimeout
- When set to true, the visibility timeout of the message will remain unchanged after an error is thrown in the handler. This will disable the default behavior of removing the visibility timeout.payload
- A JSON object that will be persisted to the Amazon SQS queue.options
- An object that will be sent to the Amazon SQS sendMessage
method.payloads
- AN array of JSON objects to send to the SQS queueoptions
- An object that will be sent alongside each messageCalling this method will long-poll the Amazon SQS queue waiting for messages to come in. For each message that is received, the handler will be called with the body of the message as a JSON object. You are required to return a promise from your handler that resolves when the work for this message is completed. After the promise resolves, @meadow/sqs
will automatically delete the message from the SQS queue. If an error is thrown, @meadow/sqs
will remove the visibility timeout so that the message can be immediately re-processed. If you would like different behavior, there are two options you may pass in to the constructor to change the default.
options
- These options will be sent to the Amazon SQS receiveMessage
function defined here: http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/SQS.html#receiveMessage-propertyhandler
- A function that returns a promise, which is meant to handle the message. The first parameter will be the message body as a JSON object. The second parameter will be the SQS message objectmessage
- The SQS message returned as the second parameter to your pollQueue
handler methodnewVisibilityTimeout
- The new visibility timeout you want applied to this message measured in seconds.FAQs
Promise/JSON based client for Amazon SQS with automatic long-polling.
The npm package @meadow/sqs receives a total of 14 weekly downloads. As such, @meadow/sqs popularity was classified as not popular.
We found that @meadow/sqs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.