node-apex
node-apex copied to clipboard
Node.js module that makes AWS Lambda's user experience a little nicer using promises.
How can I unit test modules using this wrapper? For example I am trying to test this with mocha and I keep getting: ``` TypeError: ctx.fail is not a function...
If the lambda function returns an array, this module doesn't treat it as a promise and will just do `cb` on the pending promises. I suggest: ``` if (Array.isArray(v)) {...
Hello, an old version of apex is still available at https://www.npmjs.com/package/apex-lambda Which is confusing because since then the version 2 has been published and is not installed by default (nor...
While it was nice that #3 added support for Node 4.3 on Lambda, it totally broke Node 0.10 on Lambda causing requests with errors to time out. This PR fixes...