@meadow/sqs
Promise/JSON based client for Amazon SQS with automatic long-polling.
- Requires node v6.x
Installation
npm install @meadow/sqs --saveUsage
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();
});
});API
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.
sendMessage(payload, [options])
payload- A JSON object that will be persisted to the Amazon SQS queue.options- An object that will be sent to the Amazon SQSsendMessagemethod.
sendMessageBatch(payloads, [options])
payloads- AN array of JSON objects to send to the SQS queueoptions- An object that will be sent alongside each message
pollQueue (options, handler)
Calling 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.
options- These options will be sent to the Amazon SQSreceiveMessagefunction 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 object
changeMessageVisibility (message, newVisibilityTimeout)
message- The SQS message returned as the second parameter to yourpollQueuehandler methodnewVisibilityTimeout- The new visibility timeout you want applied to this message measured in seconds.

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
