Many times, I was required to test or create AWS Lambda services.
I was looking for a solution that would help me do this in a efficient way.
AWS Lambda Runtime Interface Emulator (RIE), which is a tool that you can use to test Lambda functions locally.
It is a small web server that exposes the Lambda runtime HTTP server via a REST API.
Combination AWS Lambda RIE, Docker, and watchexec is incredibly powerful. For more information about watchexec, you can visit the project’s github page at watchexec
As a part of this post, I will demonstrate how to develop an AWS lambda
Build our Docker image for Lambda RIE
Click Here