Edge Computing with Cloudflare Workers
Bringing Node.js HTTP servers to Cloudflare Workers

Bringing Node.js HTTP servers to Cloudflare Workers

9/8/2025 · Yagiz Nizipli, James M Snell

What this post added

Introduces support for the `node:http` client and server APIs within Cloudflare Workers, enabling the deployment of existing Node.js applications and frameworks. This is achieved by building on top of the web-standard `fetch()` API for client requests and implementing a bridge system for server requests that connects Node.js-style servers to the Workers request handling model. Details specific implementations for client APIs (`http.get`, `http.request`) and server APIs (`handleAsNodeRequest`, `httpServerHandler`), along with supported features and current limitations.

Read the original post ↗