Jeremy Daly

Results 138 comments of Jeremy Daly

Definitely. Can you submit a more detailed architecture?

Hi @bencao. You are in a standard Node environment, so NPM packages work the same way. You can either `npm i aws-sdk` from your terminal, or if you're in the...

The library was designed for use with serverless functions that have a single concurrency model, so you should avoid using `.quit()` on every call in order to freeze and reuse...

It’s preferable to keep the connection alive as it saves time when you don’t set up and tear connections down. Memory should be a problem.

Strange the Node version would be causing a problem unless it has something to do with the `body` parser. Shouldn't have anything to do with the payload format.

Do you have `strict: true` set in your `tsconfig.json`? I was getting this error when I had it set to `false`.

I'm having this same problem. It is not pulling credentials from the Serverless project, but instead just reading default AWS configs.

+1 for this. I've tried the following for serverless with mocha, but it feels very hacky: ```javascript let logger = console.log beforeEach(function() { // Suppress logging console.log = function() {}...