AWS CDK has been great for us and our readers over on Serverless Stack. But the local development experience for Lambda isn't great. To fix this we created a Live Lambda Development environment in SST. SST makes it easier to build serverless apps by allowing you to work on your Lambda functions locally while connecting to your deployed resources.
Before we look at how it works, let's look at what the local development environment for serverless is usually like.
Background
Working on Lambda functions locally can be painful. You have to either:
-
Locally mock all the services that your Lambda function uses
Like API Gateway, SNS, SQS, etc. This is hard to do. If you are using a tool that mocks a specific service (like API Gateway), you won't be able to test a Lambda that's invoked by a different service (like SNS). On the other hand a service like LocalStack, that tries to mock a whole suite of services, is slow and the mocked services can be out of date.
-
Or, you'll need to deploy your changes to test them
Each deployment can take at least a minute. And repeatedly deploying to test a change really slows down the feedback loop.
Introducing sst start
To fix this we added the sst start
command to the Serverless Stack Toolkit (SST). It's an extension to AWS CDK that makes it easier to build serverless apps using CDK.
This command does a couple of things:
- It deploys a debug stack with a WebSocket API to the same AWS account and region as your app.
- It deploys your app and replaces the Lambda functions with a stub Lambda.
- Starts up a local WebSocket client to connect to the debug stack.
The debug stack contains a serverless WebSocket API and a DynamoDB table. The stub Lambda when invoked, sends a message to the WebSocket API, which in turn sends a message to the local client connected to it. The client then executes the local version of the Lambda function and sends back the results to the WebSocket API. Which then responds to the stub Lambda. And finally the stub Lambda responds back with the results.
An Example
Let's look at an example.
In this sample app we have:
- An API Gateway endpoint
- An SNS topic
- A Lambda function (api.js) that responds to the API and sends a message to the SNS topic
- A Lambda function (sns.js) that subscribes to the SNS topic
So when a request is made to the API endpoint, the stub version of api.js gets invoked and sends a message to the debug stack. This in turn gets streamed to the client. The client invokes the local version of api.js and returns the results to the debug stack. The local version also sends a message to the SNS topic. Meanwhile, the stub api.js responds to the API request with the results. Now the stub version of sns.js gets invoked as it is subscribed to the SNS topic. This gets sent to the debug stack which in turn gets streamed to the client to execute the local version of sns.js. The results of this are streamed back to stub sns.js that responds with the results.
You can try out this sample repo here.
Advantages
This approach has a couple of advantages.
- You can work on your Lambda functions locally
- While interacting with your entire deployed AWS infrastructure
- It supports all Lambda triggers, so there's no need to mock API Gateway, SQS, SNS, etc.
- It supports real Lambda environment variables
- And Lambda IAM permissions, so if a Lambda fails on AWS due to the lack of IAM permissions, it would fail locally as well.
- And it's fast! There's nothing to deploy when you make a change!
A couple of things to note.
- The debug stack is completely serverless
- So you don't get charged when it's not in use
- And it's very cheap per request, it'll be within the free tier limits
- All the data stays between your local machine and your AWS account
- There are no 3rd party services that are used
- Support for connecting to AWS resources inside VPC is coming soon
Conclusion
The sst start
command in SST creates a live lambda development environment. By extending AWS CDK, it allows you to build serverless applications in CDK while having a first-class local development environment.
As one of our early users put it; sst start
is the future of Lambda development
If you like the SST project, consider starring our repo —
SST makes it easy to build modern full-stack applications on AWS. Watch the SST in 100 seconds video to learn more.
$ npx create-sst@latest
For v2 docs, head over to v2.sst.dev
Pick your frontend
Deploy Next.js, Svelte, Remix, Astro, Solid, or any static site to AWS.
Add any feature
SST gives you the full power of AWS. Making it easy to add any feature to your product.
- File uploads — Allow your users to upload files to S3.
- Auth — Authenticate your users through any auth provider.
- Events — Run tasks after your app has returned to your user.
- Databases — Use a serverless SQL or NoSQL database to power your app.
- Jobs — Run cron jobs or long running jobs powered by serverless functions.
- APIs — Add a dedicated serverless REST, GraphQL, or WebSocket API to your app.
Collaborate with your team
Finally, you…
Top comments (4)
Would this work with golang?
Hi @yogesnsamy , Golang is on our roadmap. Currently, only Node and Typescript are supported. We are hoping to add support for Golang in the next couple of months with some help support from the community contribution.
Hey @yogesnsamy , Golang support has been added in v0.10.8.
Here is a REST API example in Golang - serverless-stack.com/examples/how-...
does this work with python?