learn-aws-lambda
learn-aws-lambda copied to clipboard
✨ Learn how to use AWS Lambda to easily create infinitely scalable web services
http://www.lambdashell.com  via/discuss: https://news.ycombinator.com/item?id=17790631 Scrolling down the command history we see: ```sh curl https://yypnj3yzaa.execute-api.us-west-1.amazonaws.com/dev/top-commands >> /tmp/foo.txt & ``` DO NOT attempt to run it on your Localhost! But you can...
The convention in _Serverless_ appears to be to start Lambda function names with a Capital letter and then CammelCase after that ... see: https://github.com/serverless/serverless/tree/master/lib ... this feels wrong to me...
I'm trying to allow an HTML Form to be submitted (_without any JS XHR/Ajax_) and it appears to be quite tedious in API Gateway ... http://stackoverflow.com/questions/32057053/how-to-pass-a-params-from-post-to-aws-lambda-from-amazon-api-gateway which lead to: https://forums.aws.amazon.com/thread.jspa?messageID=673012
Hi I was trying to develop a lambda function which will connect to the AWS thing and publish an MQTT message, I want to receive these published messages on a...
How are we going to _Unit Test_ the Lambda `handler` to ensure it works as expected? https://aws.amazon.com/blogs/compute/serverless-testing-with-aws-lambda/ ? https://medium.com/@AdamRNeary/developing-and-testing-amazon-lambda-functions-e590fac85df4
With regards to dwyl/apprenticeship#13 (comment) we want to add a section to this repo explaining how to save the body of an email to S3 when an email is received...
The tutorial's section about accessing a Lambda function through an API gateway is out of date. This needs updating. Right now @finnhodgkin and I are researching how to actually do...
With regards to https://github.com/dwyl/apprenticeship/issues/13#issuecomment-314486997 we want to add a section to this repo explaining how to trigger a lambda function when an email is received with SES.
Is there a way to return a _specific_ http **_response**_ header and status code form a Lambda function. @jackcarlisle as part of the work you are doing today, please investigate...
What if we want to use an NPM module in our Lambda Function, how is this done? A simple example could be to _require_ `request` and make an http request...