waitUntil
A method on the execution context (ctx.waitUntil(promise)) that keeps a Worker alive until asynchronous background work completes, even after the response has been sent.
WebAssembly (Wasm)
A binary instruction format that allows languages like Rust, Go (TinyGo), and C/C++ to compile and run inside the Workers runtime alongside or instead of JavaScript.
Worker
A serverless JavaScript/TypeScript/Python/Rust program that runs on Cloudflare's edge network, intercepting HTTP requests and returning responses with automatic scaling and no server management.
workers.dev
The default subdomain Cloudflare provides for deployed Workers (e.g., my-worker.my-account.workers.dev) before a custom domain is configured.
Wrangler
Cloudflare's official CLI tool for scaffolding, developing locally, testing, and deploying Workers and their associated resources.
wrangler.jsonc
The configuration file for a Worker project that declares the Worker's name, entry point, compatibility date, bindings (KV, D1, R2), triggers, and route mappings.