Lambda packaging the right way
Simplicity One of the beautiful things about Lambda is its simplicity. You write code, test it and then you deploy it. If it works on your machine, you can guarantee it’s going to work in a Lambda function too. If you want to use 3rd party libraries, you can package them alongside your code, or use Layers. It really is that simple. Problem At...