Skip to content

Commit c2c5ed8

Browse files
committed
docs: changelog for vite plugin cross session development
1 parent 3c08119 commit c2c5ed8

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Run and connect Workers in separate dev sessions with the Cloudflare Vite plugin
3+
description: Workers running in separate dev sessions can now communicate with each other using the Cloudflare Vite plugin.
4+
products:
5+
- workers
6+
date: 2025-06-26T15:00:00Z
7+
---
8+
9+
Workers can now talk to each other across separate dev sessions using service bindings and tail consumers, whether started with `vite dev` or `wrangler dev`.
10+
11+
Simply start each Worker in its own terminal:
12+
13+
```sh
14+
# Terminal 1
15+
vite dev
16+
17+
# Terminal 2
18+
wrangler dev
19+
```
20+
21+
This is useful when different teams maintain different Workers, or when each Worker uses different build configurations.
22+
23+
Check out the [Multi Workers development guide](/workers/development-testing/multi-workers) to learn more about the different approaches and when to use each one.

0 commit comments

Comments
 (0)