Cloud Provider · 6 of 6

Edge & Frontend Clouds — Vercel, Netlify, Cloudflare

A new generation of clouds built around the modern frontend stack — Git-driven deploys, global edge runtimes, deeply integrated with React / Vue / Svelte. Where the JAMstack and meta-frameworks live.

Edge runtimesGit-driven CI/CDStatic + SSRSub-ms cold startsFrontend-first
← Back to Cloud
Quick Facts

At a Glance

Basic Concepts

  • Edge runtime = your code runs in 200+ cities, milliseconds from any user.
  • Push to Git → live URL in under a minute. Preview URL per PR.
  • Static + SSR + Edge functions coexist in one deploy.
  • Built around Next.js (Vercel), Nuxt (NuxtHub), SvelteKit, Astro, Workers.
  • Pricing model = monthly seats / projects + usage (requests, bandwidth, function-time).
Landscape

The Major Players

ProviderStrengths
VercelBest-in-class for Next.js; built by the same team. Image optimization, ISR, edge functions, AI SDK.
NetlifyThe original JAMstack host; strong forms, identity, edge functions; works great with SvelteKit, Nuxt, Astro.
CloudflareWorkers (V8 isolates), Pages, R2 (object), D1 (SQL), KV, Queues, Durable Objects, Workers AI. The most ambitious edge platform.
Fastly ComputeWASM-based edge compute; strong for media & high-traffic sites.
Deno DeployDeno-native edge; tight integration with Fresh framework.
AWS Amplify HostingAWS's answer for full-stack JS hosting.
Render / Railway / Fly.ioAdjacent — primarily PaaS, but offer edge / region selection.
Mechanics

How Edge Clouds Work

The Deployment Model
  1. Connect a Git repo (GitHub / GitLab / Bitbucket).
  2. Every push runs the project's build (next build, nuxt build, etc.).
  3. Output is split: static assets → CDN, functions → edge or serverless runtime.
  4. Each PR gets a preview URL for review.
  5. Merging to main → instant production deploy with rollback.
Edge Runtime vs Node Serverless
Edge runtimeNode serverless
Where200+ cities (CDN PoPs)Few regions
Cold start< 1 ms (V8 isolates)100–800 ms
APIsWeb standards (fetch, Request)Full Node.js
Limits~30s, no native modules, smaller bundles15 min, native modules OK
Use forAuth, redirects, A/B, light APIsHeavy work, large deps
Cloudflare's Full Edge Platform

Cloudflare's offering goes well beyond hosting:

  • Workers — V8-isolate edge functions with sub-ms cold starts.
  • Pages — static site & framework hosting on top of Workers.
  • R2 — S3-compatible object storage with no egress fees.
  • D1 — SQLite at the edge.
  • KV — eventually-consistent key-value globally replicated.
  • Durable Objects — strongly-consistent stateful objects (one per ID worldwide).
  • Queues, Cron Triggers, Workers AI, Vectorize, Hyperdrive…
Built-in Performance Wins
  • Global CDN caching by default.
  • Image optimization & resizing on the fly.
  • Smart bundling & code-splitting handled by the framework.
  • Brotli / HTTP/3 / 0-RTT automatically enabled.
  • Analytics for Web Vitals, often free at the basic tier.
Pricing Notes
  • Generous free tiers — fine for personal sites & small apps.
  • Hobby vs Pro vs Enterprise tiers; per-seat / per-project.
  • Bandwidth can become expensive on Vercel / Netlify at scale — Cloudflare often cheaper for high-traffic.
  • Function-seconds & edge requests meter usage.
  • Often paired with a hyperscaler for the database tier.
Trade-offs

Strengths & Weaknesses

Strengths
  • Best-in-class developer experience for modern web.
  • Global low-latency by default.
  • Preview URLs make code review & collaboration delightful.
  • Tightly tracks the latest framework features.
Weaknesses
  • Bandwidth-heavy apps can outgrow Vercel / Netlify pricing fast.
  • Edge runtimes have constraints (no native modules, time limits).
  • Vendor-specific features create lock-in.
  • Most need a separate provider for the database tier.
When to Pick

Where Edge Clouds Win

Modern Frontend Apps

Next.js, Nuxt, SvelteKit, Astro — these clouds are the natural target.

Marketing / Content / Docs

SSG + ISR + global CDN = fast on every continent.

Edge Personalization

Auth, A/B, geo, redirects with sub-ms latency.

Storage-Heavy Apps

Cloudflare R2 — S3-compatible, no egress fees, beloved for media.

Continue

Other Cloud Providers