---
title: Run and connect Workers in separate dev commands with the Cloudflare Vite plugin
description: Workers running in separate dev commands can now communicate with each other using the Cloudflare Vite plugin.
image: https://developers.cloudflare.com/changelog-preview.png
---

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Run and connect Workers in separate dev commands with the Cloudflare Vite plugin

Jun 26, 2025 

[ Workers ](https://developers.cloudflare.com/workers/) 

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`.

Simply start each Worker in its own terminal:

Terminal window

```

# Terminal 1

vite dev


# Terminal 2

wrangler dev


```

This is useful when different teams maintain different Workers, or when each Worker has its own build setup or tooling.

Check out the [Developing with multiple Workers](https://developers.cloudflare.com/workers/development-testing/multi-workers) guide to learn more about the different approaches and when to use each one.