A clear, no-fluff breakdown of how Lambda works and how to use it today.
What about testing in local development environments which are not dependent on the cloud so that developer would have good time developing this Lambdas without cloud dependency
From my point of view, lambda function must be considered as any other application, meaning, the same test strategy must be applied as to any other.
In order to test the lambda with it's configuration (template.yaml) you can use the framework `sam` to run it locally. Here you go 👇🏼
https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/using-sam-cli-local-start-lambda.html
What about testing in local development environments which are not dependent on the cloud so that developer would have good time developing this Lambdas without cloud dependency
From my point of view, lambda function must be considered as any other application, meaning, the same test strategy must be applied as to any other.
In order to test the lambda with it's configuration (template.yaml) you can use the framework `sam` to run it locally. Here you go 👇🏼
https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/using-sam-cli-local-start-lambda.html