learn-aws-lambda
learn-aws-lambda copied to clipboard
✨ Learn how to use AWS Lambda to easily create infinitely scalable web services
JSPerf suggests that _lodash_ `_.map` is faster than _native_ `Array.map` https://jsperf.com/native-map-vs-lodash-map but is there an _overhead_ in loading _lodash_ for a _single_ execution? is it enough to _offset_ the Performance...
It's worth having a section explaining this early on so we don't _Assume_ any prior knowledge...
Possible Ideas include: - add testing and CI to the example - deployment with CLI https://aws.amazon.com/cli/ instead of _manual_ approach - authentication with AWS Cognito: https://aws.amazon.com/cognito/ - ... ?
Troubleshooting and Monitoring AWS Lambda Functions with Amazon CloudWatch: http://docs.aws.amazon.com/lambda/latest/dg/monitoring-functions.html
@nikhilaravi has done a _great_ job of documenting testing AWS Lambda functions in: #45 We need to _expand_ this to show how to use our `aws-lambda-test-utils` https://github.com/dwyl/aws-lambda-test-utils
Can we simplify our examples by encouraging people to use the CLI early in the process...? https://aws.amazon.com/cli/
What are stage variables and how are they useful? http://docs.aws.amazon.com/apigateway/latest/developerguide/stage-variables.html
@benjaminlees 's question: Is there a way of creating a new lambda function in a repo and automatically creating and connecting up the lambda function with API gateway on the...
WebSockets allow us to stream additional data from/to client/server beyond the limits of http request/response. This has opened a world of Real Time apps. Given that keeping Lambda functions running...