___
/ __\___ ___ _ __ ___ _ __
/ / / _ \ / _ \| '_ \ / _ \ '__|
/ /__| (_) | (_) | |_) | __/ |
\____/\___/ \___/| .__/ \___|_|
|_|
Write TypeScript. Cooper reads your code, provisions databases, queues, and caches, and deploys to your cloud account. One command. No config files. No lock-in.
We're onboarding teams weekly. No spam.
You're on the list.
WHAT YOU WRITE
import { database, topic, api } from "cooper"; const db = database("main"); // Postgres, provisioned const events = topic("orders"); // NATS, wired export const create = api.post("/orders", async (req) => { const order = await db.insert(orders).values(req.body); await events.publish("order.created", order); return order; });
01
Declare
Import infrastructure as TypeScript functions. Cooper statically analyzes your code. No YAML, no Terraform, no config.
02
Develop
One command starts everything locally. Real Postgres, NATS, Valkey. Not mocks. Hot reload on save.
$ cooper run03
Deploy
Ship to AWS, GCP, Azure, or Fly. Cooper provisions VPCs, databases, secrets, load balancers. You own every resource.
$ cooper deployBENCHMARKS
Requests / sec (relative to Express)
Lambda cold start
EVERYTHING ELSE
Preview environments
Every PR gets an isolated environment with real infrastructure. Live in 15 seconds. Destroyed on merge.
Cost estimation
cooper deploy --dry-run shows exactly what gets created and what it costs. No surprise AWS bills.
Open source CLI
The CLI is open source, forever. Deploys to your cloud account. We never touch your infrastructure or data.
Rust runtime
9ms cold starts. 450k req/s. The hot path never touches the JS event loop.
Auth & middleware
Built-in auth, rate limiting, middleware chains. Type-safe from request to database.
Queues, cron, pub/sub
Background jobs, scheduled tasks, event streaming. Same import pattern. Same deploy command.
EARLY ACCESS
We replaced our entire Terraform setup and three Docker Compose files with 40 lines of TypeScript. The team shipped two services in the time it used to take to configure one.
Srikant Paka
VP of Engineering, DDX
Cooper is the first tool I've seen that actually eliminates infrastructure complexity instead of abstracting over it. The deploy --dry-run alone saves hours of back-and-forth.
Anusha Kota
Consultant
9ms cold starts aren't marketing. We benchmarked it. Our Lambda fleet went from 800ms p99 to under 15ms. The Rust runtime is the real deal.
Anonymous
Tech Lead, Microsoft
Cooper is in private beta. We're onboarding early teams.
You're on the list.