Sub-50ms Global
Edge Delivery
Every page is served from Cloudflare's edge network across 300+ PoPs worldwide. No origin servers, no cold starts, and no database queries at request time.
Templates compiled to Liquid
When you deploy a site, the STORE layer compiles all pages, navigation, and settings into static Liquid templates. This removes all database latency from the delivery path.
export default {
async fetch(request, env) {
const url = new URL(request.url);
const page = await env.KV.get(url.pathname);
if (!page) return new Response('404');
// Render Liquid at the edge
const html = await renderLiquid(page);
return new Response(html);
}
}
Cached in Global KV
The compiled templates are distributed to Cloudflare's 300+ Points of Presence using Workers KV. Cache invalidation happens atomically during the two-phase deploy process.
300+ Locations
GlobalKV propagates your site globally in seconds, ensuring every user hits a server near them.
Atomic Updates
SafeA site never exists in a partially-deployed state. All templates switch over simultaneously.
Dynamic Component Resolution
Components are resolved and injected via Shadow DOM at request time by the edge worker. This guarantees that your dynamic components always reflect the latest published state without requiring a full site redeploy.