sqs-consumer

Build Amazon Simple Queue Service (SQS) based applications without the boilerplate

OTHER License

Downloads
3.2M
Stars
1.7K
Committers
75

Bot releases are hidden (Show)

sqs-consumer - v5.0.1

Published by niklasR over 5 years ago

  • Fix potential memory leak
sqs-consumer - v5.0.0

Published by nspragg over 5 years ago

Typescript migration. See usage

sqs-consumer - v5.0.0-beta.0

Published by nspragg over 5 years ago

  • Beta for Typescript migration release.
sqs-consumer - v4.1.0

Published by nspragg over 5 years ago

Allows message handler functions to be timed out via handleMessageTimeout. No timeout by default.

Relates to #141 #130

sqs-consumer - v4.0.0

Published by nspragg almost 6 years ago

  • Major upgrade to use async/await.
sqs-consumer - v3.8.0

Published by niklasR almost 7 years ago

  • Emit 'response_processed' event once per batch
sqs-consumer - v3.7.0

Published by nspragg about 7 years ago

  • Update aws-sdk dependancy
  • Change to Apache-2.0 license
sqs-consumer - v3.6.1

Published by nspragg over 7 years ago

  • Catch exceptions thrown in message handlers and propagate errors via callback
sqs-consumer - v3.6.0

Published by nspragg over 7 years ago

  • Adds support for terminating visibility timeout (sets to 0) after a processing_error has occurred.
sqs-consumer - v3.5.0

Published by nspragg over 7 years ago

  • Adds error message to error events
sqs-consumer - v3.4.0

Published by robinjmurphy almost 8 years ago

  • Uses AWS_REGION if no region is set (Thanks @virtser #56)
sqs-consumer - v3.3.0

Published by robinjmurphy about 8 years ago

  • Adds an empty event (Thanks @jacanotrigueros #50)
sqs-consumer - v3.2.0

Published by robinjmurphy over 8 years ago

  • Adds a stopped event #41 (Thanks @anho)
sqs-consumer - v3.1.3

Published by nspragg over 8 years ago

  • Patches SQSError to inherit from Error, adding stack traces
sqs-consumer - v3.1.2

Published by robinjmurphy over 8 years ago

  • Move code climate dependency into devDependencies and update version #27
sqs-consumer - v3.1.1

Published by robinjmurphy over 8 years ago

  • Now pauses for 10 seconds if an authentication error occurs #24 (fixes #23)
  • README typo fix #25
sqs-consumer - v3.1.0

Published by hjerling almost 9 years ago

  • Adds support for the attributeName option.
sqs-consumer - v3.0.0

Published by robinjmurphy almost 9 years ago

Breaking change

The error event now only returns errors that occur when receiving or deleting messages from an SQS queue.

Errors that you return in the done callback are now emitted using the processing_error event. Use this if you'd like a convenient way to log all of your application errors.

#20 (Thanks @pablovilas!)

sqs-consumer - v2.3.0

Published by robinjmurphy almost 9 years ago

  • Adds support for waitTimeSeconds and visibilityTimeout options
sqs-consumer - v2.2.1

Published by mrwillihog about 9 years ago

Bind _processMessage and _handleSqsResponse in the constructor.