Deploy to the Edge. Instantly.

Run your code closer to users with .git's global edge network. Sub-50ms latency, automatic scaling, zero configuration, and built-in security.

~/my-app — edge deploy
$ git edge deploy ./functions
⠋ Building edge bundle...
⠋ Optimizing for 342 regions...
✓ Deployed to edge network (2.1s)
→ https://my-app.git.edge/ (live)

342 Regions. 10ms Average Latency.

Your code runs at the edge, automatically routed to the nearest node for blazing-fast responses worldwide.

🌎
North America
~12ms avg
🌍
Europe
~8ms avg
🌏
Asia Pacific
~15ms avg
🇧🇷
South America
~18ms avg
🌍
Africa & ME
~22ms avg
🌐
Global Fallback
Active/Active

How .git /edge Works

A distributed runtime designed for modern web applications, APIs, and real-time workloads.

1

Edge Runtime

Lightweight, secure V8 isolates execute your code without cold starts. Full JavaScript/TypeScript support with WASM modules.

2

Smart Routing

Geo-aware load balancing routes requests to the optimal edge node. Automatic failover and health checks keep your app online.

3

Local Caching & KV

Built-in distributed cache and key-value store. Persist state at the edge without central database roundtrips.

Write Code. We Handle the Rest.

Zero config deployments, preview environments per branch, and seamless CI/CD integration.

edge.config.jsTypeScript
// Define your edge function export default async function handle(request) { const geo = request.geo; const cache = await edge.cache.get(`/api/data-${geo.region}`); if (cache) return new Response(cache); const data = await fetch(`https://api.internal`); edge.cache.set(cache, data, { ttl: 300 }); return new Response(data, { headers: { "Cache-Control": "public, s-maxage=300" } }); }

Edge-First Development

Write standard JS/TS. Use native fetch, crypto, and streams. Deploy with a single command. Every push triggers a unique preview URL.

  • Instant preview environments
  • Environment variables sync
  • Automatic SSL & CDN
  • Real-time edge logs

Built for Performance

Transparent limits, predictable pricing, and enterprise-grade reliability.

FeatureLimitNotes
Execution TimeUp to 30sAuto-timeout configurable
Memory Allocation128MB - 512MBPer invocation, auto-scales
Cold Starts~0msV8 isolates, always warm
Requests / Month10M+ / freeBurstable to millions
Edge KV Storage10GB / freeReplicated across regions
Supported RuntimesJS/TS, WASMNode 18+, Deno, Bun
SecurityWAF + DDoSOWASP Top 10 protection

Ready to ship at the speed of light?

Deploy your first edge function in under 60 seconds. No credit card required.

Start Building Free → View API Reference