Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changelog update: Announce static asset support for Workers for Platforms #19584

Merged
merged 4 commits into from
Jan 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
title: Workers for Platforms now supports Static Assets
description: Workers for Platforms customers can now serve static assets for User Workers directly from Cloudflare's global edge
products:
- workers-for-platforms
date: 2025-01-31T17:00:00Z
---

import { Render, TypeScriptExample } from "~/components";

Workers for Platforms customers can now attach static assets (HTML, CSS, JavaScript, images) directly to User Workers, removing the need to host separate infrastructure to serve the assets.

This allows your platform to serve entire front-end applications from Cloudflare's global edge, utilizing caching for fast load times, while supporting dynamic logic within the same Worker. Cloudflare automatically scales its infrastructure to handle high traffic volumes, enabling you to focus on building features without managing servers.

### What you can build

**Static Sites:** Host and serve HTML, CSS, JavaScript, and media files directly from Cloudflare's network, ensuring fast loading times worldwide. This is ideal for blogs, landing pages, and documentation sites because static assets can be efficiently cached and delivered closer to the user, reducing latency and enhancing the overall user experience.

**Full-Stack Applications:** Combine asset hosting with Cloudflare Workers to power dynamic, interactive applications. If you're an e-commerce platform, you can serve your customers' product pages and run inventory checks from within the same Worker.

<TypeScriptExample filename="index.ts">
```ts
export default {
async fetch(request, env) {
const url = new URL(request.url);

// Check real-time inventory
if (url.pathname === '/api/inventory/check') {
const product = url.searchParams.get('product');
const inventory = await env.INVENTORY_KV.get(product);
return new Response(inventory);
}

// Serve static assets (HTML, CSS, images)
return env.ASSETS.fetch(request);
}
};
```
</TypeScriptExample>

**Get Started:**
Upload static assets using the Workers for Platforms API or Wrangler. For more information, visit our [Workers for Platforms documentation.](https://developers.cloudflare.com/cloudflare-for-platforms/workers-for-platforms/configuration/static-assets/)