Definition · infra

Edge runtime

A serverless execution environment that runs code geographically close to the user (in CDN points-of-presence), with cold-start latency in single-digit milliseconds. Vercel deprecated their dedicated Edge Functions in favor of Fluid Compute in 2025 — most workloads moved back to standard Node.js for better library compatibility.

Glossary · infra
Edge runtime
startmatter.com/glossary

Why this matters

Most pages defining "Edge" get it wrong.

Generic definitions, no specifics, no opinion. We define it the way a senior engineer explains it to a founder — with cost numbers, tradeoffs, and a real position.

What it is

Edge runtime ran your serverless functions at CDN PoPs — Cloudflare's network, Vercel's network, AWS Lambda@Edge. Cold starts in milliseconds because the V8 isolate was pre-warmed. Geographically distributed by default.

What changed in 2025

Vercel's Edge Functions had real compatibility issues: many npm packages don't run on edge (no native Node APIs), the V8-isolate sandbox is strict, debugging is harder. Vercel deprecated dedicated Edge in favor of Fluid Compute — which runs full Node.js with similar cold-start characteristics and broader package support.

Cloudflare Workers and other true-edge platforms still exist. Specific use cases (auth checks at the edge, A/B test header rewrites, geolocation) still benefit from running there. General app code mostly doesn't.

When to use edge

  • Middleware that needs to run before cache (auth checks, redirects, A/B variant selection)
  • Geolocation-aware responses
  • Header rewrites and request shaping
  • Anything latency-critical where a few extra ms matters

When NOT to use edge

  • Anything that calls a database in a single region (you negate the edge benefit by making a cross-region DB call)
  • Anything that needs Node.js native APIs (large npm ecosystem)
  • Complex business logic where debugging matters

What we use

For middleware (bot detection, geo headers): edge. For everything else (API routes, page rendering): Vercel Fluid Compute, which is regular Node.js with similar cold-start performance.

Related

In the wild

Projects we shipped using edge runtime

Real founders, real product, real testimonials. How this concept shows up in actual builds.

ArbVantage
Big Data Platform · 2026

ArbVantage

Big-data platform for traffic arbitrage in Facebook ads. Built for affiliate media buyers running large daily spend across CPA offers — campaign and creative management, spend analytics, and high-volume ad-account orchestration.

Visit the product
OLSP System
Affiliate Marketing Platform · 2025

OLSP System

All-in-one affiliate marketing platform with training, traffic tools, and pre-built funnels under a single tracking pixel. Members learn lead generation and earn commissions promoting OLSP's bundled digital products.

Visit the product
Campaign Refinery
SaaS Platform · 2024

Campaign Refinery

Campaign Refinery is an advanced email marketing and automation platform that focuses on helping businesses send better emails, improve deliverability, and drive real engagement. It combines powerful automation, smart list management, and deep analytics to make email campaigns more effective and easier to manage.

Visit the product

Apply this to your build

Definitions are theory.
We ship the practice.

30-minute call, flat-price quote in 24 hours, first deploy inside two weeks.