Skip to content

Commit 9601fdd

Browse files
Workers Overview revamp (#19927)
* Workers Overview revamp * Added Description tag * Update src/content/docs/workers/index.mdx * Feedback update * removed description tag * Update src/content/docs/workers/index.mdx * Update src/content/docs/workers/index.mdx * Structural tweaks (WIP) * Updated according to feedback from Mike and Nevi * Format improvements * Fixing broken links * Tweaking formatting * More format tweaking * Fixing broken links * Update src/content/docs/workers/index.mdx * Jun suggestion update * Final feedback session! --------- Co-authored-by: Mike Nomitch <[email protected]>
1 parent f1747a9 commit 9601fdd

File tree

1 file changed

+76
-103
lines changed

1 file changed

+76
-103
lines changed

src/content/docs/workers/index.mdx

Lines changed: 76 additions & 103 deletions
Original file line numberDiff line numberDiff line change
@@ -9,168 +9,141 @@ head:
99
content: Overview
1010
---
1111

12-
import {
13-
CardGrid,
14-
Description,
15-
Feature,
16-
LinkButton,
17-
LinkTitleCard,
18-
Plan,
19-
RelatedProduct,
20-
Render,
21-
} from "~/components";
12+
import { Description, RelatedProduct, LinkButton } from "~/components";
2213

2314
<Description>
24-
25-
Build serverless applications and deploy instantly across the globe for exceptional performance, reliability, and scale.
26-
15+
A serverless platform for building, deploying, and scaling apps across [Cloudflare's global network](https://www.cloudflare.com/network/) with a single command — no infrastructure to manage, no complex configuration
2716
</Description>
2817

29-
<Plan type="all" />
18+
With Cloudflare Workers, you can expect to:
19+
- Deliver fast performance with high reliability anywhere in the world
20+
- Build full-stack apps with your framework of choice, including [React](/workers/frameworks/framework-guides/react-router/), [Vue](/workers/frameworks/framework-guides/vue/), [Svelte](/workers/frameworks/framework-guides/svelte/), [Next](/workers/frameworks/framework-guides/nextjs/), [Astro](/workers/frameworks/framework-guides/astro/), [Remix](/workers/frameworks/framework-guides/react-router/), [and more](/workers/frameworks/)
21+
- Use your preferred language, including [JavaScript](/workers/languages/javascript/), [TypeScript](/workers/languages/typescript/), [Python](/workers/languages/python/), [Rust](/workers/languages/rust/), [and more](/workers/runtime-apis/webassembly/)
22+
- Gain deep visibility and insight with built-in [observability](/workers/observability/logs/)
23+
- Get started for free and grow with flexible [pricing](/workers/platform/pricing/), affordable at any scale
24+
25+
Get started with your first project:
3026

31-
Cloudflare Workers provides a [serverless](https://www.cloudflare.com/learning/serverless/what-is-serverless/) execution environment that allows you to create new applications or augment existing ones without configuring or maintaining infrastructure.
27+
<LinkButton href="https://dash.cloudflare.com/?to=/:account/workers-and-pages/templates">Deploy a template</LinkButton>
3228

33-
Cloudflare Workers runs on [Cloudflare’s global network](https://www.cloudflare.com/network/) in hundreds of cities worldwide, offering both [Free and Paid plans](/workers/platform/pricing/).
3429

35-
<LinkButton variant="primary" href="/workers/get-started/guide/">
36-
Get started
37-
</LinkButton> <LinkButton
38-
variant="secondary"
39-
href="https://dash.cloudflare.com/?to=/:account/workers-and-pages/create"
40-
>
41-
Workers dashboard
30+
<LinkButton href="/workers/get-started/guide/" variant="minimal">
31+
Deploy with Wrangler CLI
4232
</LinkButton>
4333

4434
---
4535

46-
## Features
36+
## Build with Workers
4737

48-
<Feature header="Wrangler" href="/workers/wrangler/install-and-update/">
38+
<div>
39+
#### Front-end applications
4940

50-
The Workers command-line interface, Wrangler, allows you to [create](/workers/wrangler/commands/#init), [test](/workers/wrangler/commands/#dev), and [deploy](/workers/wrangler/commands/#deploy) your Workers projects.
41+
<span>Deploy [static assets](/workers/static-assets/) to Cloudflare's [CDN & cache](/cache/) for fast rendering</span>
42+
</div>
5143

52-
</Feature>
44+
<div>
45+
#### Back-end applications
5346

54-
<Feature header="Bindings" href="/workers/runtime-apis/bindings/">
47+
<span>Build APIs and connect to data stores with [Smart Placement](/workers/configuration/smart-placement/) to optimize latency</span>
48+
</div>
5549

56-
Bindings allow your Workers to interact with resources on the Cloudflare developer platform, including [R2](/r2/), [KV](/kv/concepts/how-kv-works/), [Durable Objects](/durable-objects/), and [D1](/d1/).
50+
<div>
51+
#### Serverless AI inference
5752

58-
</Feature>
53+
<span>Run LLMs, generate images, and more with [Workers AI](/workers-ai/)</span>
54+
</div>
5955

60-
<Feature header="Playground" href="/workers/playground/" cta="Use the Playground">
56+
<div>
57+
#### Background jobs
6158

62-
The Playground is a sandbox which gives you an instant way to preview and test a Worker directly in the browser against any site. No setup required.
63-
64-
</Feature>
59+
<span>Schedule [cron jobs](/workers/configuration/cron-triggers/), run durable [Workflows](/workflows/), and integrate with [Queues](/queues/)</span>
60+
</div>
6561

6662
---
6763

68-
## Related products
64+
## Integrate with Workers
6965

70-
<RelatedProduct header="Workers AI" href="/workers-ai/" product="workers-ai">
66+
Connect to external services like databases, APIs, and storage via [Bindings](/workers/runtime-apis/bindings/), enabling functionality with just a few lines of code:
7167

72-
Run machine learning models, powered by serverless GPUs, on Cloudflare’s global network.
68+
**Storage**
69+
70+
<RelatedProduct header="Durable Objects" href="/durable-objects/" product="durable-objects">
71+
72+
Scalable stateful storage for real-time coordination.
7373

7474
</RelatedProduct>
7575

76-
<RelatedProduct header="R2" href="/r2/" product="r2">
76+
<RelatedProduct header="D1" href="/d1/" product="d1">
7777

78-
Store large amounts of unstructured data without the costly egress bandwidth fees associated with typical cloud storage services.
78+
Serverless SQL database built for fast, global queries.
7979

8080
</RelatedProduct>
8181

82-
<RelatedProduct header="D1" href="/d1/" product="d1">
82+
<RelatedProduct header="KV" href="/kv/" product="kv">
8383

84-
Create new serverless SQL databases to query from your Workers and Pages projects.
84+
Low-latency key-value storage for fast, edge-cached reads.
8585

8686
</RelatedProduct>
8787

88-
<RelatedProduct header="Durable Objects" href="/durable-objects/" product="durable-objects">
88+
<RelatedProduct header="Queues" href="/queues/" product="queues">
8989

90-
A globally distributed coordination API with strongly consistent storage.
90+
Guaranteed delivery with no charges for egress bandwidth.
9191

9292
</RelatedProduct>
9393

94-
<RelatedProduct header="KV" href="/kv/" product="kv">
94+
<RelatedProduct header="Hyperdrive" href="/hyperdrive/" product="hyperdrive">
9595

96-
Create a global, low-latency, key-value data storage.
96+
Connect to your external database with accelerated queries, cached at the edge.
9797

9898
</RelatedProduct>
9999

100-
<RelatedProduct header="Queues" href="/queues/" product="queues">
100+
**Compute**
101101

102-
Send and receive messages with guaranteed delivery and no charges for egress bandwidth.
102+
<RelatedProduct header="Workers AI" href="/workers-ai/" product="workers-ai">
103+
104+
Machine learning models powered by serverless GPUs.
103105

104106
</RelatedProduct>
105107

106-
<RelatedProduct header="Hyperdrive" href="/hyperdrive/" product="hyperdrive">
108+
<RelatedProduct header="Workflows" href="/workflows/" product="workflows">
107109

108-
Turn your existing regional database into a globally distributed database.
110+
Durable, long-running operations with automatic retries.
109111

110112
</RelatedProduct>
111113

112114
<RelatedProduct header="Vectorize" href="/vectorize/" product="vectorize">
113115

114-
Build full-stack AI applications with Vectorize, Cloudflare’s vector database.
116+
Vector database for AI-powered semantic search.
115117

116118
</RelatedProduct>
117119

118-
<RelatedProduct header="Zaraz" href="/zaraz/" product="zaraz">
120+
<RelatedProduct header="R2" href="/r2/" product="r2">
119121

120-
Offload third-party tools and services to the cloud and improve the speed and security of your website.
122+
Zero-egress object storage for cost-efficient data access.
121123

122124
</RelatedProduct>
123125

126+
<RelatedProduct header="Browser Rendering" href="/browser-rendering/" product="browser-rendering">
127+
128+
Programmatic serverless browser instances.
129+
130+
</RelatedProduct>
131+
132+
**Media**
133+
134+
<RelatedProduct header="Cache / CDN" href="/cache/" product="cache">
135+
136+
Global caching for high-performance, low-latency delivery.
137+
138+
</RelatedProduct>
139+
140+
<RelatedProduct header="Images" href="/images/" product="images">
141+
142+
Streamlined image infrastructure from a single API.
143+
144+
</RelatedProduct>
145+
146+
124147
---
125148

126-
## More resources
127-
128-
<CardGrid>
129-
130-
<LinkTitleCard
131-
title="Learning Path"
132-
href="/learning-paths/workers/concepts/"
133-
icon="pen"
134-
>
135-
New to Workers? Get started with the Workers Learning Path.
136-
</LinkTitleCard>
137-
138-
<LinkTitleCard
139-
title="Plans"
140-
href="/workers/platform/pricing/"
141-
icon="seti:shell"
142-
>
143-
Learn about Free and Paid plans.
144-
</LinkTitleCard>
145-
146-
<LinkTitleCard title="Limits" href="/workers/platform/limits/" icon="document">
147-
Learn about plan limits (Free plans get 100,000 requests per day).
148-
</LinkTitleCard>
149-
150-
<LinkTitleCard
151-
title="Storage options"
152-
href="/workers/platform/storage-options/"
153-
icon="open-book"
154-
>
155-
Learn which storage option is best for your project.
156-
</LinkTitleCard>
157-
158-
<LinkTitleCard
159-
title="Developer Discord"
160-
href="https://discord.cloudflare.com"
161-
icon="discord"
162-
>
163-
Connect with the Workers community on Discord to ask questions, share what you
164-
are building, and discuss the platform with other developers.
165-
</LinkTitleCard>
166-
167-
<LinkTitleCard
168-
title="@CloudflareDev"
169-
href="https://x.com/cloudflaredev"
170-
icon="x.com"
171-
>
172-
Follow @CloudflareDev on Twitter to learn about product announcements, and
173-
what is new in Cloudflare Workers.
174-
</LinkTitleCard>
175-
176-
</CardGrid>
149+
Want to connect with the Workers community? [Join our Discord](https://discord.cloudflare.com)

0 commit comments

Comments
 (0)