Skip to content

Commit 8af5a95

Browse files
authored
docs: changelog for vite plugin cross session development (#23142)
1 parent b129c48 commit 8af5a95

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 commands with the Cloudflare Vite plugin
3+
description: Workers running in separate dev commands can now communicate with each other using the Cloudflare Vite plugin.
4+
products:
5+
- workers
6+
date: 2025-06-26T15:30:00Z
7+
---
8+
9+
Workers can now talk to each other across separate dev commands 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 has its own build setup or tooling.
22+
23+
Check out the [Developing with multiple Workers](/workers/development-testing/multi-workers) guide to learn more about the different approaches and when to use each one.

0 commit comments

Comments
 (0)