Edge Computing is a pattern where code runs on the nearest node (edge) to the user — usually in a CDN provider data center within a few hundred km of the client. Difference from a plain CDN: a CDN only caches responses, edge computing executes arbitrary code. Platforms: Cloudflare Workers, AWS Lambda@Edge, Deno Deploy, Vercel Edge Functions, Netlify Edge. Latency drops from 100-300ms to 10-50ms.
Below: details, example, related terms, FAQ.
addEventListener('fetch', e => e.respondWith(new Response('Hello edge')))CDN = static caching + network. Edge computing = CDN + execution. Edge computing includes CDN; CDN is only a piece.
Multi-region K8s = tens of datacenters. Edge = hundreds. Plus edge platforms manage deploy for you (git push → live globally).
Yandex Cloud Functions (not edge-native but regionally distributed). Selectel Object Storage + CDN. For true edge — Cloudflare (works in RU via Tier 2 ISPs).