Skip to content
FLAVIO COPES
flaviocopes.com
2026

The Cloudflare Guide

By Flavio Copes

Learn the Cloudflare developer platform: Workers, KV, D1, R2, Queues, Durable Objects and more, through my hands-on tutorial series.

~~~

Cloudflare grew from a CDN into a full developer platform. You can run code, store data, queue jobs, and serve entire sites, all on their edge network.

I moved this site to Cloudflare and ended up learning the whole platform. Then I wrote a tutorial series covering every major piece, one post at a time.

This page is your map through that series and the posts that came after it.

Where to start

The core of the platform is Workers. Follow this path in order:

  1. Cloudflare Workers: your first serverless function gets you running code at the edge
  2. Wrangler: the Cloudflare Workers command line tool is the CLI you’ll use for everything
  3. Serving a website with Cloudflare Workers static assets turns a Worker into a full site
  4. Cloudflare Workers: secrets and environments covers configuration the right way
  5. Cloudflare Workers observability: logs and traces shows you what’s happening in production

Storing data

Cloudflare gives you several storage options. Each solves a different problem:

Background work and scheduling

Not everything happens in a request:

Real-world patterns

Practical things I built on the platform, with the full code:

Go deeper

The best way to learn this platform is to work through the series above, in order. Each post builds something small and real. Start with your first Worker and go from there.

All Cloudflare posts are on the cloudflare tag page.

~~~

Related posts about cloudflare: