Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A simple SST app creating an API and Lambda function.
# sst/demo/app.ts
import * as sst from '@serverless-stack/resources';
export default class MyStack extends sst.Stack {
constructor(scope, id, props) {
super(scope, id, props);
const api = new sst.Api(this, 'Api', {
routes: {
'GET /hello': new sst.Function(this, 'Lambda', {
handler: 'functions/hello.main'
})
}
});
this.addOutputs({
ApiEndpoint: api.url
});
}
}Serverless Stack (SST) is an open-source framework for building full-stack serverless applications on AWS. It provides a development environment with Live Lambda Reloading, infrastructure-as-code using SST constructs (powered by AWS CDK), and seamless integrations for APIs, databases, authentication, and frontends.
Origin & Creator
Created by SST Inc. (initially by the team behind Seed.run) as an evolution of CDK-based serverless tooling.
Industrial Note
SST is used in high-scale serverless architectures where rapid iteration, cost efficiency, and fully managed AWS components are essential.