Edge deploys
Push to Git and your code runs in 30+ regions within seconds. Zero cold starts on the hot path.
DEVELOPER PLATFORM
Typed APIs, edge functions, and a database — deployed from one command. Built for developers who'd rather write code than configure infrastructure.
QUICKSTART
Write a typed route, push to your repo, and it's live on the edge. No YAML, no waiting.
import { createClient } from "@stack/sdk";
const stack = createClient(process.env.STACK_KEY);
// Define a typed endpoint — deploys to the edge on push
export const getUser = stack.route({
method: "GET",
path: "/users/:id",
handler: async ({ params }) => {
const user = await stack.db
.from("users")
.select("id, name, email")
.eq("id", params.id)
.single();
return { user };
},
});FEATURES
A focused toolset that stays out of your way. Each piece works on its own and better together.
Push to Git and your code runs in 30+ regions within seconds. Zero cold starts on the hot path.
Route params, request bodies, and query results are fully typed. Autocomplete follows you from client to database.
Every pull request gets an isolated environment with its own database branch. Merge with confidence.
Fire-and-forget background jobs and retry-safe webhooks, configured in code — not a separate dashboard.
Declarative access policies live next to your schema. Ship multi-tenant apps without leaking data.
Local dev, migrations, logs, and secrets all run through a single command. Nothing to click through.
IN THE WILD
From a solo developer's desk to a full platform team's control room — the same CLI runs everywhere.




WORKFLOW
Stay in your editor and terminal. We handle the boring parts of running a backend.

The local runtime mirrors production, including the edge cache and database, so what works on your machine works in prod.
Schema changes are versioned and applied in order. Roll forward or back with a single command.
Structured logs, traces, and metrics are on by default. Search across regions from the CLI or dashboard.
PRICING
Start free and upgrade when you're ready. No credit card required to begin.
For side projects and prototypes.
For production apps that need to scale.
For teams shipping together.
FAQ
TypeScript and JavaScript are first-class today. The runtime is standards-based, so most Node and Web APIs work unchanged. Python support is on the roadmap.
Free to start, no credit card. Go from empty repo to a live API in under five minutes.