FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
SST v3 Has a Free API: Build Full-Stack Serverless Apps on AWS with Zero Config
How-ToDevOps

SST v3 Has a Free API: Build Full-Stack Serverless Apps on AWS with Zero Config

via Dev.to TutorialAlex Spinov1h ago

What is SST? SST (Serverless Stack) is a framework for building full-stack applications on AWS . Version 3 is a complete rewrite using Pulumi under the hood, with a dramatically simpler API. SST v3 lets you define your entire AWS infrastructure in TypeScript — and deploy it with a single command. Quick Start npx sst@latest init npx sst dev This gives you a live development environment with real AWS resources — not emulators. Define Infrastructure // sst.config.ts export default $config ({ app ( input ) { return { name : " my-app " , home : " aws " , }; }, async run () { // Create an API const api = new sst . aws . ApiGatewayV2 ( " MyApi " ); api . route ( " GET / " , " packages/functions/src/hello.handler " ); api . route ( " GET /users " , " packages/functions/src/users.list " ); api . route ( " POST /users " , " packages/functions/src/users.create " ); // Create a database const db = new sst . aws . Dynamo ( " MyTable " , { fields : { pk : " string " , sk : " string " }, primaryIndex

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
0 views

Related Articles

“Learn to Code” Is Dead… Learn to Think Instead
How-To

“Learn to Code” Is Dead… Learn to Think Instead

Medium Programming • 20m ago

How-To

How One File Makes Claude Code Actually Follow Your Instructions

Medium Programming • 32m ago

LeetCode Solution: 121. Best Time to Buy and Sell Stock
How-To

LeetCode Solution: 121. Best Time to Buy and Sell Stock

Dev.to Tutorial • 42m ago

The Feature Took 2 Hours to Build — and 2 Weeks to Fix
How-To

The Feature Took 2 Hours to Build — and 2 Weeks to Fix

Medium Programming • 1h ago

Blog 15: SDLC Phase 4 — Testing
How-To

Blog 15: SDLC Phase 4 — Testing

Medium Programming • 2h ago

Discover More Articles