Skip to content
Merged
Changes from 7 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
146 changes: 33 additions & 113 deletions src/content/docs/workers/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,167 +10,87 @@ head:
---

import {
CardGrid,
Description,
Feature,
LinkButton,
LinkTitleCard,
Plan,
RelatedProduct,
Render,
LinkButton,
} from "~/components";

<Description>

Build serverless applications and deploy instantly across the globe for exceptional performance, reliability, and scale.

Cloudflare Workers lets you build fast, scalable, serverless, full-stack apps on Cloudflare’s global edge network for low-latency performance.
</Description>

<Plan type="all" />

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.
* Supports JavaScript, TypeScript, Python, Rust & full-stack [frameworks](/workers/frameworks/)
* Built-in [CDN caching](/cache/), distributed storage, & serverless AI inference for high performance
* Scales easily without managing infrastructure, with simple deployment & configuration
* Works with stateful or stateless apps and connects to [data stores](/workers/databases/connecting-to-databases/) with [smart placement](/workers/configuration/smart-placement/)
* Runs [cron jobs](/workers/configuration/cron-triggers/), automates [workflows](/workflows/), & processes [queues](/queues/)
* Flexible [pricing](/workers/platform/pricing/) that stays affordable at any scale

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/).

<LinkButton variant="primary" href="/workers/get-started/guide/">
Get started
</LinkButton> <LinkButton
variant="secondary"
href="https://dash.cloudflare.com/?to=/:account/workers-and-pages/create"
>
Workers dashboard
<LinkButton variant="primary">
Deploy with Workers
</LinkButton>

---

## Features

<Feature header="Wrangler" href="/workers/wrangler/install-and-update/">

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.

</Feature>

<Feature header="Bindings" href="/workers/runtime-apis/bindings/">

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/).

</Feature>

<Feature header="Playground" href="/workers/playground/" cta="Use the Playground">

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.

</Feature>

---

## Related products
# Explore the possibilities

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

Run machine learning models, powered by serverless GPUs, on Cloudflare’s global network.
**Storage**

</RelatedProduct>

<RelatedProduct header="R2" href="/r2/" product="r2">
<RelatedProduct header="Durable Objects" href="/durable-objects/" product="durable-objects">

Store large amounts of unstructured data without the costly egress bandwidth fees associated with typical cloud storage services.
Scalable stateful storage for real-time coordination.

</RelatedProduct>

<RelatedProduct header="D1" href="/d1/" product="d1">

Create new serverless SQL databases to query from your Workers and Pages projects.
Serverless SQL database built for fast, global queries.

</RelatedProduct>

<RelatedProduct header="Durable Objects" href="/durable-objects/" product="durable-objects">
<RelatedProduct header="KV" href="/kv/" product="kv">

A globally distributed coordination API with strongly consistent storage.
Low-latency key-value storage for fast, edge-cached reads.

</RelatedProduct>

<RelatedProduct header="KV" href="/kv/" product="kv">
**Compute**

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

Create a global, low-latency, key-value data storage.
Vector database for AI-powered semantic search.

</RelatedProduct>

<RelatedProduct header="Queues" href="/queues/" product="queues">
<RelatedProduct header="Zaraz" href="/zaraz/" product="zaraz">

Send and receive messages with guaranteed delivery and no charges for egress bandwidth.
Privacy-friendly third-party script loading at the edge.

</RelatedProduct>

<RelatedProduct header="Hyperdrive" href="/hyperdrive/" product="hyperdrive">
<RelatedProduct header="R2" href="/r2/" product="r2">

Turn your existing regional database into a globally distributed database.
Zero-egress object storage for cost-efficient data access.

</RelatedProduct>

<RelatedProduct header="Vectorize" href="/vectorize/" product="vectorize">
**Media**

<RelatedProduct header="Cache / CDN" href="/cache/" product="cache">

Build full-stack AI applications with Vectorize, Cloudflare’s vector database.
Global caching for high-performance, low-latency delivery.

</RelatedProduct>

<RelatedProduct header="Zaraz" href="/zaraz/" product="zaraz">
<RelatedProduct header="Hyperdrive" href="/hyperdrive/" product="hyperdrive">

Offload third-party tools and services to the cloud and improve the speed and security of your website.
Accelerate database queries by caching at the edge.

</RelatedProduct>

---

## More resources

<CardGrid>

<LinkTitleCard
title="Learning Path"
href="/learning-paths/workers/concepts/"
icon="pen"
>
New to Workers? Get started with the Workers Learning Path.
</LinkTitleCard>

<LinkTitleCard
title="Plans"
href="/workers/platform/pricing/"
icon="seti:shell"
>
Learn about Free and Paid plans.
</LinkTitleCard>

<LinkTitleCard title="Limits" href="/workers/platform/limits/" icon="document">
Learn about plan limits (Free plans get 100,000 requests per day).
</LinkTitleCard>

<LinkTitleCard
title="Storage options"
href="/workers/platform/storage-options/"
icon="open-book"
>
Learn which storage option is best for your project.
</LinkTitleCard>

<LinkTitleCard
title="Developer Discord"
href="https://discord.cloudflare.com"
icon="discord"
>
Connect with the Workers community on Discord to ask questions, share what you
are building, and discuss the platform with other developers.
</LinkTitleCard>

<LinkTitleCard
title="@CloudflareDev"
href="https://x.com/cloudflaredev"
icon="x.com"
>
Follow @CloudflareDev on Twitter to learn about product announcements, and
what is new in Cloudflare Workers.
</LinkTitleCard>

</CardGrid>
[Join our Discord](https://discord.com/invite/cloudflaredev)
Loading