DEV Community

Discussion on: How to check what code is currently running in your lambda when UI Console does not allow viewing or editing it

Collapse
 
rolfstreefkerk profile image
Rolf Streefkerk

What I do to circumvent this issue is to create a lambda layer with dependencies.

My main code base will never reach that 3Mbyte limit, so you can always view it in the online code editor and do edits there if you need.

Collapse
 
dvddpl profile image
Davide de Paolis

I just finishing another post regarding how to reduce the size of the uploaded package ( with proper bundling is still quite hard to reach that limit).
But I must say I haven-t considered Lambda Layers for that, haven-t tried them yet, definitely worth mention this option. Thanx!