SQS Queue Provider for Slipstream
This is a SQS queue provider for Slipstream.
Install
npm install slipstream-sqs --save
Although it can be used on it's own (it is effectively just a wrapper around aws-sdk-js), it is intended to be used in conjunction with Slipstream.
Example
var Queue = ;var Sqs = ; var provider = region: 'us-west-1' accessKeyId: 'your access id' secretAccessKey: 'your access key' queueUrl: 'sqs queue url' ; var queue = provider: provider ; queue; queue;
For more information on how queues are processed, see the docs on the Slipstream github.
Tests
npm test