Remote Execution Flow
World proxy reroutes queue events and streams to dedicated workers. Strict mode enforces production safety via environment guards.
Trigger50ms
start() calls initiate workflow
Queue100ms
Events published to queue
Worker250ms
Remote worker executes steps
Stream80ms
Real-time updates emitted
Get Started in 3 Steps
1
Install
Add workflow-studio to your project
npm install workflow-studio2
Configure
Set up remote execution mode
export default defineConfig({
execution: {
mode: 'remote',
url: process.env.WORKER_URL
}
})3
Deploy
Build and deploy your worker
workflow-studio compute build && workflow-studio compute deployReady to deploy your first workflow?
Start with the getting started guide or explore the CLI reference.