DEV Community

Discussion on: Why local development for serverless is an anti-pattern

Collapse
 
jayair_20 profile image
Jay

If you are looking for the Lambda reload approach, check out SST (github.com/serverless-stack/server...). It deploys your entire stack to AWS but hot reloads your Lambda functions, so you get a tight feedback loop and the logs show in your terminal. This approach also allows you to set breakpoints in VS Code. Here's a short clip of it in action — youtube.com/watch?v=2w4A06IsBlU

Collapse
 
ludofleury profile image
Ludovic Fleury

Amazing :) I will check this! thank you