Skip to content

Commit 1ffe5fb

Browse files
authored
changelog: workflows beta
1 parent 8646b73 commit 1ffe5fb

File tree

2 files changed

+28
-22
lines changed

2 files changed

+28
-22
lines changed

src/content/changelogs-next/stuff-and-things.mdx

Lines changed: 0 additions & 22 deletions
This file was deleted.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: Workflows
3+
description: Build long-running, reliable and durable applications on Cloudflare Workers
4+
products:
5+
- workers
6+
- workflows
7+
date: 2024-10-24T14:00:00Z
8+
---
9+
10+
import { Render, PackageManagers } from "~/components"
11+
12+
Workflows is now in open beta, and available to any developer a free or paid Workers plan.
13+
14+
Workflows allow you to build multi-step applications that can automatically retry, persist state and run for minutes, hours, days, or weeks. Workflows introduces a programming model that makes it easier to build reliable, long-running tasks, observe as they progress, and programatically trigger instances based on events across your services.
15+
16+
### Get started
17+
18+
You can get started with Workflows by [following our get started guide](/workflows/get-started/guide/) and/or using `npm create cloudflare` to pull down the starter project:
19+
20+
```sh
21+
npm create cloudflare@latest workflows-starter -- --template "cloudflare/workflows-starter"
22+
```
23+
24+
You can open the `src/index.ts` file, extend it, and use `wrangler deploy` to deploy your first Workflow. From there, you can:
25+
26+
* Learn the [Workflows API](/workflows/build/workers-api/)
27+
* [Trigger Workflows](/workflows/build/trigger-workflows/) via your Workers apps.
28+
* Understand the [Rules of Workflows](/workflows/build/rules-of-workflows/) and how to adopt best practices

0 commit comments

Comments
 (0)