') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); [RFC] feat(nitro): embed observability dashboard in-process at /_workflow by pranaygp · Pull Request #2548 · vercel/workflow · GitHub
Skip to content

[RFC] feat(nitro): embed observability dashboard in-process at /_workflow - #2548

Merged
pranaygp merged 3 commits into
mainfrom
pgp/nitro-web-integration
Jul 29, 2026
Merged

[RFC] feat(nitro): embed observability dashboard in-process at /_workflow#2548
pranaygp merged 3 commits into
mainfrom
pgp/nitro-web-integration

Conversation

@pranaygp

Copy link
Copy Markdown
Contributor

Context

Using Workflow with a Nitro-based framework (Nitro v2/v3, Nuxt) used to run the local observability UI as a separate process: the dev-only /_workflow handler booted the entire @workflow/web Express server on a random port and 302-redirected to it. That second server, second port, and cross-origin redirect is what this PR eliminates.

Now the dashboard is served in-process, on the same origin/port, at a configurable route (default /_workflow) — no second server, no redirect, no orphan process.

This is the first half of making @workflow/nitro an all-in-one integration. The other half — auto-starting the world on boot — is a follow-up PR that builds on #2544 (ensureWorldStarted) and is intentionally not included here.

Changes

  • @workflow/web — new framework-neutral @workflow/web/handler export (createWorkflowWebHandler({ basename })) that serves SSR + static client assets + RPC as a single Web RequestResponse handler under a runtime mount path. The React Router build (Vite base /) is reprefixed at runtime — asset-manifest URLs + publicPath — so the dashboard is self-contained under its mount (<basename>/assets/...), never touching the host app's root namespace. Adds @workflow/web/registry (best-effort discovery) and makes the RPC/stream client basename-aware. The standalone @workflow/web/server (CLI at /) is unchanged.
  • @workflow/nitroaddDashboardHandler now mounts that handler in-process (Nitro v2 h3.fromWebHandler + v3 native paths) instead of redirecting. New dashboard?: boolean | { enabled?, path? } option; default = on in dev, off in prod. When disabled nothing is registered, so production bundles carry no @workflow/web import (zero bundle/startup cost). Excluded on Vercel deploys.
  • @workflow/cliworkflow web / inspect --web detect an already-running embedded dashboard (via the registry, health-checked) and open it instead of spawning a redundant server on :3456. --standalone forces the standalone UI.

Because the embedded data layer shares the host process's process.env, it reads the same world as the running app automatically (no extra wiring).

Test plan

Verified manually across all three targets + prod gating + CLI:

CheckResult
workbench/nitro-v3 (v3 native) /_workflow200 HTML, assets reprefixed to /_workflow/assets/… + served text/javascript, RPC success:true
workbench/nitro-v2 (v2 h3)200, UI + assets + RPC all working
workbench/nuxt (Vite SSR)200, UI + assets; deep-link /_workflow/run/x served by the handler (no SPA-fallback issue)
No second port / orphanonly the app's port listens; registry isolates per-pid
Prod build (default)/_workflow serves the app's own index.html; no @workflow/web in the bundle
CLI coordinationdetects embedded URL; --standalone bypasses
Automated@workflow/web + @workflow/nitro unit tests pass; Biome clean

Follow-up (separate PR, not here)

Auto-start the world on server boot via a Nitro plugin (ensureWorldStarted), gated off Vercel — depends on #2544 merging first.

🤖 Generated with Claude Code

@pranaygp
pranaygp requested a review from a team as a code ownerJune 20, 2026 21:20
CopilotAI review requested due to automatic review settings June 20, 2026 21:20
@changeset-bot

changeset-botBot commented Jun 20, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: e556071

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 16 packages
NameType
@workflow/cliMinor
@workflow/nitroMinor
@workflow/webMinor
workflowPatch
@workflow/world-testingPatch
@workflow/nuxtPatch
@workflow/corePatch
@workflow/web-sharedMinor
@workflow/buildersPatch
@workflow/nextPatch
@workflow/vitestPatch
@workflow/astroPatch
@workflow/nestPatch
@workflow/rollupPatch
@workflow/sveltekitPatch
@workflow/vitePatch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@vercel

vercelBot commented Jun 20, 2026

Copy link
Copy Markdown
Contributor

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@github-actions

github-actionsBot commented Jun 20, 2026

Copy link
Copy Markdown
Contributor

📊 Benchmark Results

📈 Comparing against baseline from main branch. Green 🟢 = faster, Red 🔺 = slower.

workflow with no steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Express0.044s (-5.2% 🟢)1.006s (~)0.962s101.00x
💻 LocalNitro0.046s (+2.9%)1.005s (~)0.960s101.04x
💻 LocalNext.js (Turbopack)0.049s (-1.6%)1.006s (~)0.957s101.11x
🐘 PostgresNext.js (Turbopack)0.055s (-8.0% 🟢)1.010s (~)0.954s101.26x
🐘 PostgresNitro0.071s (-0.8%)1.013s (~)0.942s101.62x
🐘 PostgresExpress0.071s (-4.8%)1.013s (~)0.941s101.62x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express0.228s (-19.2% 🟢)1.832s (-4.2%)1.604s101.00x
▲ VercelNitro0.260s (+26.1% 🔺)1.796s (+17.3% 🔺)1.536s101.14x
▲ VercelNext.js (Turbopack)0.616s (+0.6%)2.571s (+1.3%)1.955s102.71x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

workflow with 1 step

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Express1.077s (~)2.007s (~)0.929s101.00x
💻 LocalNext.js (Turbopack)1.078s (~)2.006s (~)0.928s101.00x
💻 LocalNitro1.080s (~)2.007s (~)0.927s101.00x
🐘 PostgresNext.js (Turbopack)1.093s (~)2.010s (~)0.917s101.01x
🐘 PostgresNitro1.096s (~)2.008s (~)0.913s101.02x
🐘 PostgresExpress1.100s (~)2.010s (~)0.910s101.02x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro1.464s (+7.4% 🔺)3.064s (+14.1% 🔺)1.600s101.00x
▲ VercelExpress1.533s (+12.3% 🔺)3.076s (+2.3%)1.543s101.05x
▲ VercelNext.js (Turbopack)2.193s (-6.7% 🟢)3.940s (+4.8%)1.747s101.50x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

workflow with 10 sequential steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Nitro10.422s (~)11.022s (~)0.600s31.00x
💻 LocalExpress10.436s (~)11.022s (~)0.586s31.00x
🐘 PostgresNitro10.453s (-0.6%)11.012s (~)0.559s31.00x
💻 LocalNext.js (Turbopack)10.490s (~)11.023s (~)0.533s31.01x
🐘 PostgresNext.js (Turbopack)10.492s (~)11.017s (~)0.525s31.01x
🐘 PostgresExpress10.545s (+0.6%)11.018s (~)0.474s31.01x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro11.875s (+0.5%)13.136s (-4.9%)1.261s31.00x
▲ VercelExpress12.011s (+2.2%)14.193s (+5.2% 🔺)2.181s31.01x
▲ VercelNext.js (Turbopack)13.642s (+7.4% 🔺)15.604s (+6.2% 🔺)1.962s21.15x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

workflow with 25 sequential steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Nitro13.564s (~)14.027s (~)0.463s51.00x
🐘 PostgresNitro13.583s (-1.2%)14.022s (~)0.439s51.00x
🐘 PostgresExpress13.652s (~)14.020s (~)0.369s51.01x
💻 LocalExpress13.664s (+0.8%)14.028s (~)0.364s51.01x
🐘 PostgresNext.js (Turbopack)13.665s (-1.3%)14.018s (~)0.353s51.01x
💻 LocalNext.js (Turbopack)13.753s (+1.3%)14.027s (~)0.275s51.01x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro17.778s (+7.1% 🔺)19.111s (+0.9%)1.333s41.00x
▲ VercelNext.js (Turbopack)18.365s (+4.2%)20.436s (+5.6% 🔺)2.071s31.03x
▲ VercelExpress18.433s (+11.9% 🔺)20.236s (+10.5% 🔺)1.803s31.04x

🔍 Observability: Nitro | Next.js (Turbopack) | Express

workflow with 50 sequential steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Nitro12.033s (~)12.649s (~)0.616s81.00x
💻 LocalExpress12.124s (+0.9%)13.026s (+6.1% 🔺)0.902s71.01x
🐘 PostgresNitro12.165s (-2.0%)13.021s (~)0.857s71.01x
💻 LocalNext.js (Turbopack)12.180s (-2.8%)13.025s (-1.1%)0.845s71.01x
🐘 PostgresExpress12.227s (-1.8%)13.015s (~)0.789s71.02x
🐘 PostgresNext.js (Turbopack)12.268s (-1.9%)13.013s (~)0.745s71.02x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro23.118s (+24.0% 🔺)24.569s (+18.6% 🔺)1.451s41.00x
▲ VercelExpress24.202s (+32.7% 🔺)26.187s (+30.6% 🔺)1.985s41.05x
▲ VercelNext.js (Turbopack)25.381s (+19.6% 🔺)27.729s (+20.4% 🔺)2.348s41.10x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

Promise.all with 10 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Nitro1.189s (~)2.008s (~)0.819s151.00x
🐘 PostgresExpress1.202s (+2.3%)2.008s (~)0.805s151.01x
🐘 PostgresNext.js (Turbopack)1.260s (+4.1%)2.075s (~)0.815s151.06x
💻 LocalExpress1.393s (~)2.006s (~)0.614s151.17x
💻 LocalNitro1.396s (+1.5%)2.006s (~)0.610s151.17x
💻 LocalNext.js (Turbopack)1.450s (+3.1%)2.073s (+3.3%)0.623s151.22x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro3.051s (+42.9% 🔺)4.790s (+21.0% 🔺)1.739s71.00x
▲ VercelExpress3.352s (+54.9% 🔺)5.322s (+37.8% 🔺)1.970s61.10x
▲ VercelNext.js (Turbopack)3.951s (+22.6% 🔺)5.421s (+10.7% 🔺)1.470s61.30x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

Promise.all with 25 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Nitro1.328s (~)2.592s (-5.2% 🟢)1.264s121.00x
🐘 PostgresNext.js (Turbopack)1.384s (+4.0%)3.011s (~)1.627s101.04x
🐘 PostgresExpress1.424s (+5.6% 🔺)2.676s (+6.7% 🔺)1.252s121.07x
💻 LocalNitro2.375s (-3.6%)2.735s (-9.1% 🟢)0.360s111.79x
💻 LocalNext.js (Turbopack)2.429s (+1.2%)3.008s (~)0.579s101.83x
💻 LocalExpress2.472s (~)3.010s (~)0.539s101.86x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express2.745s (+9.3% 🔺)4.549s (+12.0% 🔺)1.804s71.00x
▲ VercelNitro3.073s (+19.0% 🔺)4.418s (+7.4% 🔺)1.345s71.12x
▲ VercelNext.js (Turbopack)4.538s (+27.4% 🔺)6.437s (+23.7% 🔺)1.899s51.65x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

Promise.all with 50 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Nitro1.613s (-3.6%)4.011s (-15.2% 🟢)2.398s81.00x
🐘 PostgresExpress1.639s (+1.5%)4.264s (~)2.625s81.02x
🐘 PostgresNext.js (Turbopack)2.817s (-13.1% 🟢)6.016s (~)3.199s61.75x
💻 LocalNitro5.339s (-14.0% 🟢)6.016s (-14.2% 🟢)0.677s53.31x
💻 LocalExpress6.092s (+2.1%)6.616s (+3.1%)0.524s53.78x
💻 LocalNext.js (Turbopack)6.789s (+13.9% 🔺)7.767s (+7.6% 🔺)0.978s44.21x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro3.812s (+11.9% 🔺)5.493s (+2.4%)1.681s61.00x
▲ VercelExpress3.913s (+42.1% 🔺)5.832s (+33.7% 🔺)1.920s61.03x
▲ VercelNext.js (Turbopack)5.338s (+21.2% 🔺)6.994s (+12.0% 🔺)1.656s51.40x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

Promise.race with 10 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Nitro1.181s (~)2.007s (~)0.826s151.00x
🐘 PostgresExpress1.189s (+0.6%)2.008s (~)0.819s151.01x
🐘 PostgresNext.js (Turbopack)1.201s (+0.7%)2.007s (~)0.806s151.02x
💻 LocalNitro1.356s (-3.0%)2.007s (~)0.651s151.15x
💻 LocalExpress1.406s (+0.6%)2.007s (~)0.600s151.19x
💻 LocalNext.js (Turbopack)1.414s (-2.4%)2.007s (~)0.592s151.20x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express2.562s (+23.4% 🔺)4.344s (+18.1% 🔺)1.782s71.00x
▲ VercelNitro2.603s (+24.7% 🔺)4.221s (+10.2% 🔺)1.618s81.02x
▲ VercelNext.js (Turbopack)3.778s (+17.9% 🔺)5.694s (+17.2% 🔺)1.916s61.47x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

Promise.race with 25 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Next.js (Turbopack)1.319s (~)3.010s (~)1.691s101.00x
🐘 PostgresNitro1.331s (+2.9%)2.393s (+3.3%)1.063s131.01x
🐘 PostgresExpress1.401s (+4.4%)2.828s (+23.3% 🔺)1.427s111.06x
💻 LocalNitro2.434s (+1.0%)2.917s (-3.1%)0.483s111.85x
💻 LocalExpress2.474s (+2.7%)3.010s (~)0.536s101.88x
💻 LocalNext.js (Turbopack)2.706s (+2.6%)3.008s (-3.2%)0.302s102.05x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro3.027s (+16.3% 🔺)4.634s (+10.1% 🔺)1.607s71.00x
▲ VercelExpress3.354s (+35.7% 🔺)5.153s (+34.6% 🔺)1.799s61.11x
▲ VercelNext.js (Turbopack)4.182s (+22.8% 🔺)6.064s (+26.3% 🔺)1.882s51.38x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

Promise.race with 50 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Nitro1.631s (-1.0%)4.135s (~)2.504s81.00x
🐘 PostgresExpress1.651s (+1.4%)4.297s (+7.1% 🔺)2.645s71.01x
🐘 PostgresNext.js (Turbopack)3.251s (+1.7%)6.017s (-3.2%)2.766s51.99x
💻 LocalNext.js (Turbopack)5.033s (-10.9% 🟢)5.684s (-8.6% 🟢)0.651s63.08x
💻 LocalNitro5.932s (~)6.615s (+3.0%)0.683s53.64x
💻 LocalExpress6.658s (+20.0% 🔺)7.518s (+21.0% 🔺)0.859s44.08x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express4.023s (+47.9% 🔺)5.684s (+29.6% 🔺)1.662s61.00x
▲ VercelNitro4.053s (+32.5% 🔺)5.349s (+12.4% 🔺)1.296s61.01x
▲ VercelNext.js (Turbopack)4.654s (-13.8% 🟢)6.252s (-12.0% 🟢)1.598s51.16x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

workflow with 10 sequential data payload steps (10KB)

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Next.js (Turbopack)0.561s (-9.1% 🟢)1.007s (-1.8%)0.446s601.00x
💻 LocalNitro0.561s (-4.1%)1.005s (-1.7%)0.444s601.00x
🐘 PostgresNitro0.561s (-3.0%)1.041s (+1.7%)0.479s581.00x
💻 LocalExpress0.582s (+4.3%)1.005s (~)0.424s601.04x
💻 LocalNext.js (Turbopack)0.586s (-2.1%)1.022s (+1.7%)0.435s591.05x
🐘 PostgresExpress0.666s (+14.3% 🔺)1.098s (+5.5% 🔺)0.432s551.19x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro3.474s (+33.2% 🔺)5.048s (+19.7% 🔺)1.574s121.00x
▲ VercelExpress3.705s (+50.7% 🔺)5.634s (+46.1% 🔺)1.929s111.07x
▲ VercelNext.js (Turbopack)4.410s (+17.5% 🔺)6.013s (+16.0% 🔺)1.603s111.27x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

workflow with 25 sequential data payload steps (10KB)

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Nitro1.308s (~)2.008s (~)0.700s451.00x
🐘 PostgresExpress1.357s (-2.3%)2.007s (-2.2%)0.651s451.04x
🐘 PostgresNext.js (Turbopack)1.396s (~)2.030s (+1.0%)0.634s451.07x
💻 LocalNitro1.453s (+1.9%)2.006s (~)0.553s451.11x
💻 LocalExpress1.481s (+2.2%)2.006s (-1.1%)0.525s451.13x
💻 LocalNext.js (Turbopack)1.504s (+0.6%)2.028s (+1.1%)0.525s451.15x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro7.747s (+26.5% 🔺)9.230s (+15.9% 🔺)1.482s101.00x
▲ VercelExpress8.092s (+38.4% 🔺)10.032s (+35.1% 🔺)1.940s91.04x
▲ VercelNext.js (Turbopack)10.957s (+29.8% 🔺)12.956s (+27.4% 🔺)1.999s71.41x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

workflow with 50 sequential data payload steps (10KB)

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Next.js (Turbopack)2.617s (-6.3% 🟢)3.008s (-3.4%)0.392s401.00x
🐘 PostgresNitro2.622s (-3.1%)3.111s (-0.8%)0.490s391.00x
🐘 PostgresExpress2.674s (-2.1%)3.112s (+0.8%)0.437s391.02x
💻 LocalNitro3.118s (-2.7%)3.790s (-0.8%)0.672s321.19x
💻 LocalExpress3.198s (+1.2%)3.977s (+4.9%)0.779s311.22x
💻 LocalNext.js (Turbopack)3.270s (~)3.977s (-0.8%)0.706s311.25x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express17.692s (+48.2% 🔺)20.080s (+43.9% 🔺)2.389s71.00x
▲ VercelNitro17.764s (+44.8% 🔺)19.240s (+35.6% 🔺)1.477s71.00x
▲ VercelNext.js (Turbopack)21.444s (+13.6% 🔺)23.078s (+10.4% 🔺)1.634s61.21x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

workflow with 10 concurrent data payload steps (10KB)

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Next.js (Turbopack)0.179s (-5.0%)1.006s (~)0.827s601.00x
🐘 PostgresNitro0.212s (-2.8%)1.007s (~)0.795s601.19x
🐘 PostgresExpress0.232s (+4.4%)1.006s (~)0.774s601.30x
💻 LocalNitro0.435s (+1.4%)1.004s (~)0.569s602.43x
💻 LocalExpress0.505s (+18.2% 🔺)1.005s (~)0.500s602.82x
💻 LocalNext.js (Turbopack)0.615s (+3.7%)1.039s (+3.4%)0.425s583.44x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro1.247s (+19.4% 🔺)2.521s (-1.6%)1.274s241.00x
▲ VercelExpress1.436s (+25.4% 🔺)3.126s (+22.6% 🔺)1.690s201.15x
▲ VercelNext.js (Turbopack)2.788s (+34.7% 🔺)4.434s (+19.3% 🔺)1.646s142.24x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

workflow with 25 concurrent data payload steps (10KB)

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Next.js (Turbopack)0.278s (-6.6% 🟢)1.017s (~)0.739s891.00x
🐘 PostgresNitro0.320s (-6.0% 🟢)1.006s (~)0.686s901.15x
🐘 PostgresExpress0.331s (-2.1%)1.006s (-1.1%)0.675s901.19x
💻 LocalNitro2.094s (-3.4%)2.608s (-6.8% 🟢)0.514s357.53x
💻 LocalExpress2.331s (+9.9% 🔺)3.011s (+10.0% 🔺)0.680s308.38x
💻 LocalNext.js (Turbopack)2.631s (+0.9%)3.224s (+3.6%)0.593s289.46x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro1.710s (+14.6% 🔺)3.479s (+11.8% 🔺)1.768s261.00x
▲ VercelExpress1.885s (+29.1% 🔺)3.700s (+20.6% 🔺)1.814s251.10x
▲ VercelNext.js (Turbopack)3.480s (+19.7% 🔺)5.201s (+8.3% 🔺)1.721s182.03x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

workflow with 50 concurrent data payload steps (10KB)

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Next.js (Turbopack)0.505s (-4.5%)2.984s (-2.5%)2.479s411.00x
🐘 PostgresNitro0.523s (-7.0% 🟢)1.032s (-5.2% 🟢)0.509s1171.04x
🐘 PostgresExpress0.536s (-1.8%)1.097s (-1.0%)0.561s1101.06x
💻 LocalNitro9.364s (~)10.360s (-0.8%)0.996s1218.55x
💻 LocalExpress9.636s (+4.9%)10.363s (~)0.726s1219.09x
💻 LocalNext.js (Turbopack)10.056s (+6.1% 🔺)11.118s (+5.6% 🔺)1.062s1119.92x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express2.282s (+19.3% 🔺)4.108s (+6.8% 🔺)1.826s301.00x
▲ VercelNitro2.365s (+26.9% 🔺)3.898s (+1.3%)1.533s311.04x
▲ VercelNext.js (Turbopack)4.833s (+28.9% 🔺)6.777s (+22.9% 🔺)1.944s182.12x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

Stream Benchmarks(includes TTFB metrics)
workflow with stream

💻 Local Development

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Next.js (Turbopack)1.134s (-1.6%)1.968s (~)0.010s (-4.7%)2.018s (~)0.884s101.00x
💻 LocalNitro1.151s (~)2.004s (~)0.010s (-14.2% 🟢)2.016s (~)0.866s101.01x
💻 LocalExpress1.155s (~)2.005s (~)0.010s (+2.0%)2.018s (~)0.863s101.02x
🐘 PostgresNext.js (Turbopack)1.158s (-0.6%)2.001s (~)0.002s (+60.0% 🔺)2.011s (~)0.853s101.02x
🐘 PostgresExpress1.159s (~)2.001s (~)0.002s (+7.1% 🔺)2.010s (~)0.851s101.02x
🐘 PostgresNitro1.183s (-0.7%)1.991s (~)0.001s (-20.0% 🟢)2.011s (~)0.828s101.04x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express1.994s (-6.9% 🟢)3.471s (+6.0% 🔺)2.195s (+30.5% 🔺)6.178s (+12.9% 🔺)4.184s101.00x
▲ VercelNitro2.050s (+3.8%)3.178s (-5.9% 🟢)2.383s (+59.7% 🔺)5.981s (+10.2% 🔺)3.931s101.03x
▲ VercelNext.js (Turbopack)4.181s (+35.1% 🔺)4.464s (+17.9% 🔺)2.971s (+116.5% 🔺)8.906s (+41.5% 🔺)4.725s102.10x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

stream pipeline with 5 transform steps (1MB)

💻 Local Development

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Express1.550s (+1.2%)2.011s (~)0.012s (-5.9% 🟢)2.026s (~)0.476s301.00x
💻 LocalNitro1.567s (+1.9%)2.009s (~)0.011s (-10.3% 🟢)2.024s (~)0.457s301.01x
🐘 PostgresExpress1.578s (+1.7%)2.002s (~)0.005s (+1.3%)2.026s (~)0.447s301.02x
🐘 PostgresNitro1.594s (+0.5%)2.001s (~)0.005s (+2.0%)2.025s (~)0.431s301.03x
🐘 PostgresNext.js (Turbopack)1.599s (-1.1%)2.009s (~)0.005s (-1.9%)2.025s (~)0.425s301.03x
💻 LocalNext.js (Turbopack)1.609s (+1.5%)2.005s (+1.8%)0.010s (-29.1% 🟢)2.059s (+1.7%)0.450s301.04x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro6.455s (+16.2% 🔺)7.637s (+5.2% 🔺)0.363s (+73.7% 🔺)8.408s (+5.0% 🔺)1.953s81.00x
▲ VercelExpress6.909s (+25.9% 🔺)8.407s (+21.0% 🔺)0.260s (+13.5% 🔺)9.167s (+18.4% 🔺)2.257s71.07x
▲ VercelNext.js (Turbopack)10.696s (+16.1% 🔺)11.422s (+4.9%)0.180s (-28.3% 🟢)12.979s (+11.7% 🔺)2.283s51.66x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

10 parallel streams (1MB each)

💻 Local Development

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Express0.783s (-4.6%)1.082s (+1.9%)0.000s (-66.7% 🟢)1.097s (+1.7%)0.313s561.00x
🐘 PostgresNitro0.808s (-1.6%)1.123s (+1.9%)0.000s (-66.0% 🟢)1.140s (+1.7%)0.332s531.03x
🐘 PostgresNext.js (Turbopack)1.060s (+6.1% 🔺)1.524s (+4.4%)0.000s (-100.0% 🟢)1.533s (+3.3%)0.473s401.35x
💻 LocalNitro1.180s (-6.6% 🟢)1.948s (-3.2%)0.000s (+38.2% 🔺)1.952s (-3.2%)0.772s311.51x
💻 LocalExpress1.289s (+4.6%)2.014s (~)0.000s (-60.0% 🟢)2.017s (~)0.728s301.65x
💻 LocalNext.js (Turbopack)1.363s (-2.2%)1.981s (~)0.000s (+33.3% 🔺)2.016s (~)0.653s301.74x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express3.437s (+18.1% 🔺)4.870s (+11.6% 🔺)0.000s (NaN%)5.412s (+11.7% 🔺)1.975s121.00x
▲ VercelNitro3.487s (+22.7% 🔺)4.519s (-0.8%)0.000s (+Infinity% 🔺)4.914s (-2.5%)1.427s131.01x
▲ VercelNext.js (Turbopack)5.491s (+13.0% 🔺)6.260s (+12.0% 🔺)0.000s (NaN%)7.274s (+5.8% 🔺)1.782s91.60x

🔍 Observability: Express | Nitro | Next.js (Turbopack)

fan-out fan-in 10 streams (1MB each)

💻 Local Development

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
🐘 Postgres🥇 Nitro1.762s (-3.7%)2.393s (+0.6%)0.000s (-100.0% 🟢)2.409s (~)0.646s251.00x
🐘 PostgresExpress1.890s (+11.7% 🔺)2.537s (+10.8% 🔺)0.000s (NaN%)2.553s (+10.7% 🔺)0.662s241.07x
🐘 PostgresNext.js (Turbopack)2.453s (-20.7% 🟢)3.052s (-13.6% 🟢)0.000s (-100.0% 🟢)3.073s (-13.3% 🟢)0.620s201.39x
💻 LocalNext.js (Turbopack)3.336s (-5.9% 🟢)3.864s (-3.1%)0.001s (+142.9% 🔺)3.911s (-3.2%)0.576s161.89x
💻 LocalNitro3.404s (+3.1%)4.094s (+1.7%)0.001s (-10.0% 🟢)4.098s (+1.7%)0.694s151.93x
💻 LocalExpress3.804s (+16.0% 🔺)4.229s (+10.2% 🔺)0.001s (+33.3% 🔺)4.233s (+10.2% 🔺)0.429s152.16x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro5.219s (+19.6% 🔺)6.447s (+9.9% 🔺)0.001s (+Infinity% 🔺)6.880s (+8.0% 🔺)1.661s91.00x
▲ VercelExpress5.473s (+4.8%)7.105s (+9.2% 🔺)0.000s (-100.0% 🟢)7.614s (+8.9% 🔺)2.140s81.05x
▲ VercelNext.js (Turbopack)9.081s (+32.8% 🔺)9.838s (+27.9% 🔺)0.000s (-100.0% 🟢)10.937s (+26.0% 🔺)1.856s61.74x

🔍 Observability: Nitro | Express | Next.js (Turbopack)

Summary

Fastest Framework by World

Winner determined by most benchmark wins

World🥇 Fastest FrameworkWins
💻 LocalNitro14/21
🐘 PostgresNitro10/21
▲ VercelNitro13/21
Fastest World by Framework

Winner determined by most benchmark wins

Framework🥇 Fastest WorldWins
Express🐘 Postgres14/21
Next.js (Turbopack)🐘 Postgres16/21
Nitro🐘 Postgres13/21
Column Definitions
  • Workflow Time: Runtime reported by workflow (completedAt - createdAt) - primary metric
  • TTFB: Time to First Byte - time from workflow start until first stream byte received (stream benchmarks only)
  • Slurp: Time from first byte to complete stream consumption (stream benchmarks only)
  • Wall Time: Total testbench time (trigger workflow + poll for result)
  • Overhead: Testbench overhead (Wall Time - Workflow Time)
  • Samples: Number of benchmark iterations run
  • vs Fastest: How much slower compared to the fastest configuration for this benchmark

Worlds:

  • 💻 Local: In-memory filesystem world (local development)
  • 🐘 Postgres: PostgreSQL database world (local development)
  • ▲ Vercel: Vercel production/preview deployment
  • 🌐 Turso: Community world (local development)
  • 🌐 MongoDB: Community world (local development)
  • 🌐 Redis: Community world (local development)
  • 🌐 Jazz: Community world (local development)
  • 🌐 Redis: Community world (local development)
  • 🌐 Redis + BullMQ: Community world (local development)
  • 🌐 Cloudflare: Community world (local development)
  • 🌐 MySQL: Community world (local development)
  • 🌐 Azure: Community world (local development)
  • 🌐 NATS JetStream: Community world (local development)
  • 🌐 Upstash: Community world (local development)
  • 🌐 Platformatic: Community world (local development)

📋 View full workflow run

@github-actions

github-actionsBot commented Jun 20, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

All tests passed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production144202301672
✅ 💻 Local Development160502191824
✅ 📦 Local Production160502191824
✅ 🐘 Local Postgres159302311824
✅ 🪟 Windows15200152
✅ 📋 Other88501791064
Total7282010788360

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro125027
✅ example125027
✅ express125027
✅ fastify125027
✅ hono125027
✅ nextjs-turbopack14903
✅ nextjs-webpack14903
✅ nitro125027
✅ nuxt125027
✅ sveltekit14408
✅ vite125027
✅ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable127025
✅ express-stable127025
✅ fastify-stable127025
✅ hono-stable127025
✅ nextjs-turbopack-canary133019
✅ nextjs-turbopack-stable15200
✅ nextjs-webpack-canary133019
✅ nextjs-webpack-stable15200
✅ nitro-stable127025
✅ nuxt-stable127025
✅ sveltekit-stable14606
✅ vite-stable127025
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable127025
✅ express-stable127025
✅ fastify-stable127025
✅ hono-stable127025
✅ nextjs-turbopack-canary133019
✅ nextjs-turbopack-stable15200
✅ nextjs-webpack-canary133019
✅ nextjs-webpack-stable15200
✅ nitro-stable127025
✅ nuxt-stable127025
✅ sveltekit-stable14606
✅ vite-stable127025
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable126026
✅ express-stable126026
✅ fastify-stable126026
✅ hono-stable126026
✅ nextjs-turbopack-canary132020
✅ nextjs-turbopack-stable15101
✅ nextjs-webpack-canary132020
✅ nextjs-webpack-stable15101
✅ nitro-stable126026
✅ nuxt-stable126026
✅ sveltekit-stable14507
✅ vite-stable126026
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack15200
✅ 📋 Other
AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable127025
✅ e2e-local-dev-tanstack-start-127025
✅ e2e-local-postgres-nest-stable126026
✅ e2e-local-postgres-tanstack-start-126026
✅ e2e-local-prod-nest-stable127025
✅ e2e-local-prod-tanstack-start-127025
✅ e2e-vercel-prod-tanstack-start125027

📋 View full workflow run

@pranaygppranaygp changed the title feat(nitro): embed observability dashboard in-process at /_workflow[RFC] feat(nitro): embed observability dashboard in-process at /_workflowJun 20, 2026
@pranaygp
pranaygp marked this pull request as draft June 20, 2026 21:25
@pranaygp
pranaygp marked this pull request as ready for review June 21, 2026 21:12
Comment threadpackages/nitro/src/index.ts Outdated
Comment threadpackages/nitro/src/index.ts Outdated
pranaygpand others added 2 commits June 23, 2026 15:05
Serve the @workflow/web observability UI inside the Nitro process at a
configurable route (default /_workflow) instead of spawning a separate
web server and 302-redirecting to it. Enabled in dev, omitted from
production builds by default (so prod bundles carry no @workflow/web
import). Never mounted on Vercel deploys (use the hosted dashboard).
- @workflow/web: add a framework-neutral `@workflow/web/handler`
(createWorkflowWebHandler) that serves SSR + static client assets +
RPC as one Web Request->Response handler under a runtime basename
(asset manifest URLs + publicPath are reprefixed so the dashboard is
self-contained under its mount). Add `@workflow/web/registry` for
embedded-dashboard discovery; make the RPC/stream client basename-aware.
- @workflow/nitro: mount the handler in-process (Nitro v2 h3 + v3 native
paths), gated by a new `dashboard` option (default = dev).
- @workflow/cli: `workflow web` / `inspect --web` defer to a running
embedded dashboard instead of starting a redundant server; pass
`--standalone` to force the standalone UI.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Address review feedback on the embedded dashboard:
- Normalize the dashboard mount path in one place before it feeds both
the Nitro route registration (`[path, path + '/**']`) and the handler
`basename`. Force a single leading slash, strip trailing slashes, and
reject the root mount, so a custom `path` can't make the route and the
handler's internal `normalizeBasename` disagree.
- Replace the handler-level `!nitro.routing` v2 checks with the existing
`isNitroV2()` helper for consistent v2/v3 detection.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@pranaygp
pranaygpforce-pushed the pgp/nitro-web-integration branch from 4ba2a5a to c235d1aCompareJune 23, 2026 22:06

@VaguelySeriousVaguelySerious left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AI review: no blocking issues

Validated locally by building a fresh Nitro v3 app against this PR's tarball and exercising the embedded dashboard end-to-end:

CheckResult
/_workflow served in-process (not the old 302 redirect)200 text/html
Client assets reprefixed under the mount, correct MIME/_workflow/assets/*.js as text/javascript, no root-namespace leakage
RPC routed under the mount/_workflow/api/rpc hits the handler, not the SPA fallback
Deep-link served by the handler/_workflow/run/<id> → 200 (no SPA-fallback issue)
Single port / no orphanonly the app port listens; no second server spawned
Embedded handler self-registersregistry entry with url + basename + world + pid
workflow web defers to the embedded dashboarddetects + opens it, does not spawn a redundant server
--standalonebypasses detection, spawns the standalone UI
Custom dashboard: { path }remounts (assets follow), default path 404s
Live UIruns render over the same origin

Changes I'd like (all non-blocking) are inline: docs not updated for the new behavior/option, and the new logic lacks automated coverage. Approving.

*
* @default nitro.options.dev
*/
dashboard?: boolean | { enabled?: boolean; path?: string };

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AI Review: Note

This adds a user-facing dashboard option, but the PR touches no docs. Two updates needed in docs/content/docs/v5/api-reference/workflow-nitro/index.mdx:

  1. The behavior line still says "Serves a redirect to the local observability dashboard at /_workflow in development" — now stale; it's served in-process with no redirect.
  2. Add dashboard to the module-options table (type, default nitro.options.dev, configurable path).

Per repo convention, user-facing changes should be reflected in docs.

* the root mount (whose `/**` catch-all would swallow the host app), falling
* back to the default.
*/
function normalizeDashboardPath(path: string): string {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AI Review: Note

No automated coverage for the new logic. normalizeDashboardPath is a pure function that's cheap to unit-test and has real edge cases worth pinning: trailing slashes, duplicate leading slashes, and the root-mount rejection that falls back to the default (the /** catch-all swallowing the host app is exactly what this guards against). The handler's asset-reprefixing and the CLI registry-detection path are also untested.

I verified all of these manually (in-process serve, asset reprefix, custom path remount, --standalone bypass, embedded detection), but a couple of unit tests would lock the behavior in against regressions.

signal: AbortSignal.timeout(1500),
});
// Any non-5xx response means something is serving that route.
if (res.status < 500) live.push(entry);

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AI Review: Nit

res.status < 500 treats a 404 at the recorded URL as a live dashboard. The pid-liveness check above handles the common stale case, so this is low-risk, but a process that's alive yet no longer serving that exact mount (e.g. the path was reconfigured) would lead the CLI to open a 404. Consider narrowing to < 400 (a 404 means nothing is serving that route).

@pranaygp
pranaygp merged commit 25715d4 into mainJul 29, 2026
115 checks passed
@pranaygp
pranaygp deleted the pgp/nitro-web-integration branch July 29, 2026 20:59
@github-actions

Copy link
Copy Markdown
Contributor

No backport to stable for 25715d4 (AI decision).

This is feature work: it adds a new @workflow/web/handler + @workflow/web/registry export surface, a new dashboard config option on @workflow/nitro, and a new --standalone CLI flag, all carrying minor changesets. Replacing the redirect-to-separate-server approach with an in-process mount is a capability/architecture enhancement, not a fix to a defect on stable.

To override, re-run the Backport to stable workflow manually via workflow_dispatch and paste this commit SHA into the ref input:

25715d4521164836d7f2eb2493b73d13ec595b10

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants

@pranaygp@RihanArfan@VaguelySerious