Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A basic Cloudflare Worker that responds with 'Hello, World!' to HTTP requests.
# cloudflare/demo/worker.js
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
async function handleRequest(request) {
return new Response('Hello, World!', { status: 200 })
}Cloudflare Workers is a serverless platform for deploying JavaScript, TypeScript, and Rust functions at the edge, allowing developers to run code globally close to end-users with low latency.
Origin & Creator
Cloudflare Workers was launched by Cloudflare in 2017 as a way to run serverless code at the edge.
Industrial Note
Cloudflare Workers excels in global, low-latency applications where edge execution and near-instant scalability are critical.