Spokes.wiki Search About
Web PageTech Article source ↗ source url updated Thu Jun 18 2026 00:00:00 GMT+0000 (Coordinated Universal Time)

Cloudflare Workers — source summary

The official Workers developer docs, the primary-source counterpart to the Wikipedia-based cloudflare provider overview. Where that page places Cloudflare as the spoke’s edge-compute model, this one documents the platform a developer actually ships on: “a serverless platform for building, deploying, and scaling apps across Cloudflare’s global network with a single command.” T1 vendor docs — authoritative on what’s offered, with the usual vendor caveat on the pricing and “affordable at any scale” framing.

The compute model

Workers is serverless, but not the container-or-VM-behind-an-API shape of AWS Lambda. Code runs at the network edge across Cloudflare’s global footprint, so latency comes from proximity rather than from a region you picked and a machine you sized. There is no instance to provision and billing is per-request. Languages: JavaScript, TypeScript, Python, Rust, “and more,” with first-class support for full-stack frameworks — React, Vue, Svelte, Next.js, Astro, React Router — so a framework build deploys without a server to manage.

The ecosystem (why it’s more than functions)

The docs frame Workers as a hub with storage and compute primitives attached, which is what separates it from a bare function runtime:

  • Storage / stateDurable Objects (stateful coordination, single-instance consistency), D1 (serverless SQL), KV (eventually-consistent key-value), R2 (object storage, the no-egress-fee pitch that is the sharp foil to fly-io‘s metered egress), Hyperdrive (connection-pooling / acceleration for external databases).
  • Compute / AIWorkers AI (GPU-backed inference at the edge), Vectorize (vector database), Workflows (durable long-running operations), Browser Rendering.
  • Delivery — CDN/cache and image optimization, since the same network is already a CDN.

Why it matters here

This deepens the spoke’s third hosting model. The cloudflare page established edge-per-request as a category alongside raw IaaS (hetzner-cloud) and managed PaaS (render/railway/vercel); the docs show the category has grown a full data plane (D1, KV, R2, Durable Objects, Vectorize), so “edge compute” is no longer just stateless functions at the edge — it’s a place to run a stateful app end to end. Workers AI continues to answer the spoke’s open question on where AI/real-time stacks run. Note this wiki is itself hosted on Cloudflare Pages, a sibling of Workers.

cloudflare · vercel · fly-io · render · railway