From 28cc65202df915b2d5cc6d80102ca626ecf67129 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Cardoso?= Date: Wed, 13 May 2026 10:11:54 +0100 Subject: [PATCH] [Workers] Update how-workers-works.mdx Can we add the blog post here for further information on Workers runtime? https://blog.cloudflare.com/workerd-open-source-workers-runtime/ Thanks. --- src/content/docs/workers/reference/how-workers-works.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/workers/reference/how-workers-works.mdx b/src/content/docs/workers/reference/how-workers-works.mdx index 4a44795d4bf2054..5071002d41f1ae9 100644 --- a/src/content/docs/workers/reference/how-workers-works.mdx +++ b/src/content/docs/workers/reference/how-workers-works.mdx @@ -11,7 +11,7 @@ products: import { Render, WorkersIsolateDiagram } from "~/components" -Though Cloudflare Workers behave similarly to [JavaScript](https://www.cloudflare.com/learning/serverless/serverless-javascript/) in the browser or in Node.js, there are a few differences in how you have to think about your code. Under the hood, the Workers runtime uses the [V8 engine](https://www.cloudflare.com/learning/serverless/glossary/what-is-chrome-v8/) — the same engine used by Chromium and Node.js. The Workers runtime also implements many of the standard [APIs](/workers/runtime-apis/) available in most modern browsers. +Though Cloudflare Workers behave similarly to [JavaScript](https://www.cloudflare.com/learning/serverless/serverless-javascript/) in the browser or in Node.js, there are a few differences in how you have to think about your code. Under the hood, the [Workers runtime](https://blog.cloudflare.com/workerd-open-source-workers-runtime/) uses the [V8 engine](https://www.cloudflare.com/learning/serverless/glossary/what-is-chrome-v8/) — the same engine used by Chromium and Node.js. The Workers runtime also implements many of the standard [APIs](/workers/runtime-apis/) available in most modern browsers. The differences between JavaScript written for the browser or Node.js happen at runtime. Rather than running on an individual's machine (for example, [a browser application or on a centralized server](https://www.cloudflare.com/learning/serverless/glossary/client-side-vs-server-side/)), Workers functions run on [Cloudflare's global network](https://www.cloudflare.com/network) - a growing global network of thousands of machines distributed across hundreds of locations.