You can run multiple Workers in a single dev command by passing multiple config files to wrangler dev:
wrangler dev --config ./web/wrangler.jsonc --config ./api/wrangler.jsoncPreviously, if you ran the command above and then also ran wrangler dev for a different Worker, the Workers running in separate wrangler dev sessions could not communicate with each other. This prevented you from being able to use Service Bindings and Tail Workers in local development, when running separate wrangler dev sessions.
Now, the following works as expected:
# Terminal 1: Run your application that includes both Web and API workerswrangler dev --config ./web/wrangler.jsonc --config ./api/wrangler.jsonc
# Terminal 2: Run your auth worker separatelywrangler dev --config ./auth/wrangler.jsoncThese Workers can now communicate with each other across separate dev commands, regardless of your development setup.
export default { async fetch(request, env) { // This service binding call now works across dev commands const authorized = await env.AUTH.isAuthorized(request);
if (!authorized) { return new Response('Unauthorized', { status: 401 }); }
return new Response('Hello from API Worker!', { status: 200 }); },};Check out the Developing with multiple Workers guide to learn more about the different approaches and when to use each one.
Source: Cloudflare
Latest Posts
- (Updated) Build SharePoint automations with Workflows—now aligned with the Teams experience [MC1138798]
![(Updated) Build SharePoint automations with Workflows—now aligned with the Teams experience [MC1138798] 2 pexels brett sayles 2516539](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==)
- (Updated) Microsoft 365 Copilot: Navigation refresh in the M365 Copilot app [MC1187677]
![(Updated) Microsoft 365 Copilot: Navigation refresh in the M365 Copilot app [MC1187677] 3 pexels pixabay 158163](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==)
- (Updated) Outlook: Support for recommended and automatically applied sensitivity labels in Outlook for iOS and Android [MC1247891]
![(Updated) Outlook: Support for recommended and automatically applied sensitivity labels in Outlook for iOS and Android [MC1247891] 4 yellow 8622786 1920](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==)
- (Updated) Microsoft Teams: Apps now supported in Private Channels [MC1197145]
![(Updated) Microsoft Teams: Apps now supported in Private Channels [MC1197145] 5 pexels googledeepmind 25626433](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==)

![(Updated) Build SharePoint automations with Workflows—now aligned with the Teams experience [MC1138798] 2 pexels brett sayles 2516539](https://mwpro.co.uk/wp-content/uploads/2024/08/pexels-brett-sayles-2516539-150x150.webp)
![(Updated) Microsoft 365 Copilot: Navigation refresh in the M365 Copilot app [MC1187677] 3 pexels pixabay 158163](https://mwpro.co.uk/wp-content/uploads/2024/08/pexels-pixabay-158163-150x150.webp)
![(Updated) Outlook: Support for recommended and automatically applied sensitivity labels in Outlook for iOS and Android [MC1247891] 4 yellow 8622786 1920](https://mwpro.co.uk/wp-content/uploads/2025/06/yellow-8622786_1920-150x150.webp)
![(Updated) Microsoft Teams: Apps now supported in Private Channels [MC1197145] 5 pexels googledeepmind 25626433](https://mwpro.co.uk/wp-content/uploads/2024/08/pexels-googledeepmind-25626433-150x150.webp)
