Build. Ship. Repeat.

Static site hosting with a powerful edge serverless runtime.
Go from local code to a live URL instantly.

No Auth Required
Delta Uploads
Auto-Compression
Edge Runtime
Instant Previews
MCP Ready
~ % npx @repeatdev/cli deploy ./dist --ephemeral

Built for scale.

Designed for human teams and autonomous AI workflows. Everything you need to ship instantly.

Performance

Delta Uploads

We hash your files locally and only upload what changed. Subsequent deployments are nearly instant.

npx @repeatdev/cli deploy
Hashing directory
Checking changed files
Uploaded 45KB (2 files)
Deployed to production
Efficiency

Auto-Compression

Assets are automatically compressed during upload to drastically cut bandwidth and storage costs.

Asset Size
bundle.js 1.2 MB 245 KB
style.css 340 KB 42 KB
index.html 24 KB 8 KB
Avg Savings ~81%
Edge Runtime

WinterCG Compatible

Write middleware using standard Web APIs (fetch, Request, Response). No vendor lock-in, runs instantly at the edge.

// _middleware.js
export default function middleware(request) {
const url = new URL(request.url);
if (url.pathname === '/old') {
return Response.redirect('/new', 301);
}
return fetch(request); // Standard Fetch API
}
Configuration

_headers & _redirects

Gain fine-grained control over caching, proxies, and routing using simple, declarative text files. Zero complex configs.

# _headers
/*
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
# _redirects (Proxying & Rewrites)
/api/* https://api.backend.com/:splat 200
/blog/* https://my-blog.com/:splat 301
Environments

Deployment Tags

Tag deployments to create isolated environments. Perfect for automated branch previews and pull requests.

repeatdev deploy ./dist --tag=pr-123
Delta uploaded 12KB
Deployed to pr-123
🔗 https://pr-123---my-app.rpt.dev
Reliability

History & Rollbacks

Every deployment is immutable. View your entire release history and instantly rollback to any previous state.

repeatdev rollback v42
Located deployment v42
Updated production pointer
Rolled back successfully in 45ms
AI Infrastructure

MCP Ready

Fully integrated with the Model Context Protocol. Autonomous agents can deploy, rollback, and manage your projects.

[Claude 3.5 Sonnet]
"I've fixed the bug in the header. I will deploy a preview for you."
Tool Used: mcp_repeatdev_deploy
Target: ./dist
Tag: bugfix-header
Result: https://bugfix-header---my-app.rpt.dev

Edit. Ship. Repeat.

Repeat.dev is a CLI-first platform, but we built this sandbox to prove our deployment speeds.
Edit a file and hit Cmd+S to see how fast we ship.

The Repeat CLI.

Command your projects and deployments without leaving the terminal.

bash — 80x24