lawos
lawos copied to clipboard
SQS Worker for AWS Lambda.
Potential fix for #1 (if #1 is even an issue). Is this the intended behavior? If any one of the Item callbacks rejects, it should quit?
any decent docs for this ? like what Q.item and Q.work do exactly, quite hard to read code if one is not a promises guru
- tests added/updated - README updated - bump minor version
When installed via npm the `coverage` and `tests` folders are included. Removing them from the bundle will result in **90%** size reduction.
Given an `item` callback like: ```javascript Q.item( item => new Promise((resolve, reject) => { someOtherService((error, result) => { error ? reject(error) : resolve(result) }) }) ) ``` If `someOtherService` results...