') + ')', '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); } })(); })(); Fix `getWorld()` import naming by TooTallNate · Pull Request #826 · vercel/workflow · GitHub
Skip to content

Fix getWorld() import naming - #826

Merged
TooTallNate merged 1 commit into
mainfrom
01-21-fix_getworld_import_naming
Jan 22, 2026
Merged

Fix getWorld() import naming#826
TooTallNate merged 1 commit into
mainfrom
01-21-fix_getworld_import_naming

Conversation

@TooTallNate

@TooTallNateTooTallNate commented Jan 21, 2026

Copy link
Copy Markdown
Member

Updated import path for getWorld from "workflow/api" to "workflow/runtime" in documentation examples.

Closes#803.

@changeset-bot

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 99ad3bf

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

This PR includes changesets to release 0 packages

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@github-actions

github-actionsBot commented Jan 21, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production446038484
✅ 💻 Local Development408032440
✅ 📦 Local Production408032440
✅ 🐘 Local Postgres408032440
✅ 🪟 Windows440044
❌ 🌍 Community Worlds165230188
Total1879231342036

❌ Failed Tests

🌍 Community Worlds (23 failed)

mongodb (1 failed):

  • webhookWorkflow

redis (1 failed):

  • webhookWorkflow

starter (20 failed):

  • addTenWorkflow
  • addTenWorkflow
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • hookCleanupTestWorkflow - hook token reuse after workflow completion
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars)
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly
  • Calculator.calculate - static workflow method using static step methods from another class
  • AllInOneService.processNumber - static workflow method using sibling static step methods
  • ChainableService.processWithThis - static step methods using this to reference the class
  • thisSerializationWorkflow - step function invoked with .call() and .apply()
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE

turso (1 failed):

  • webhookWorkflow

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro4004
✅ example4004
✅ express4004
✅ fastify4004
✅ hono4004
✅ nextjs-turbopack4301
✅ nextjs-webpack4301
✅ nitro4004
✅ nuxt4004
✅ sveltekit4004
✅ vite4004
✅ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable4004
✅ express-stable4004
✅ fastify-stable4004
✅ hono-stable4004
✅ nextjs-turbopack-stable4400
✅ nextjs-webpack-stable4400
✅ nitro-stable4004
✅ nuxt-stable4004
✅ sveltekit-stable4004
✅ vite-stable4004
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable4004
✅ express-stable4004
✅ fastify-stable4004
✅ hono-stable4004
✅ nextjs-turbopack-stable4400
✅ nextjs-webpack-stable4400
✅ nitro-stable4004
✅ nuxt-stable4004
✅ sveltekit-stable4004
✅ vite-stable4004
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable4004
✅ express-stable4004
✅ fastify-stable4004
✅ hono-stable4004
✅ nextjs-turbopack-stable4400
✅ nextjs-webpack-stable4400
✅ nitro-stable4004
✅ nuxt-stable4004
✅ sveltekit-stable4004
✅ vite-stable4004
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack4400
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev300
❌ mongodb4310
✅ redis-dev300
❌ redis4310
✅ starter-dev300
❌ starter24200
✅ turso-dev300
❌ turso4310

📋 View full workflow run

@vercel

vercelBot commented Jan 21, 2026

Copy link
Copy Markdown
Contributor

@github-actions

github-actionsBot commented Jan 21, 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🥇 Nitro0.032s (-26.1% 🟢)1.007s (~)0.975s101.00x
🌐 StarterNext.js (Turbopack)0.037s (-8.7% 🟢)1.014s (~)0.977s101.15x
💻 LocalNext.js (Turbopack)0.040s (-5.5% 🟢)1.017s (~)0.977s101.24x
🌐 RedisNext.js (Turbopack)0.044s (+2.8%)1.018s (~)0.974s101.37x
🌐 MongoDBNext.js (Turbopack)0.045s (-32.9% 🟢)1.015s (~)0.969s101.42x
💻 LocalExpress0.047s (+4.0%)1.008s (~)0.961s101.47x
🌐 TursoNext.js (Turbopack)0.108s (+2.0%)1.014s (~)0.906s103.36x
🐘 PostgresNext.js (Turbopack)0.126s (-22.3% 🟢)1.018s (~)0.892s103.93x
🐘 PostgresNitro0.295s (+12.1% 🔺)1.012s (~)0.717s109.21x
🐘 PostgresExpress0.314s (+6.7% 🔺)1.013s (-0.9%)0.699s109.80x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express0.622s (+13.6% 🔺)1.589s (+8.6% 🔺)0.967s101.00x
▲ VercelNitro0.626s (+3.6%)1.769s (+17.7% 🔺)1.143s101.01x
▲ VercelNext.js (Turbopack)0.709s (+17.3% 🔺)1.549s (-2.1%)0.840s101.14x

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

workflow with 1 step

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Nitro1.077s (-3.0%)2.006s (~)0.929s101.00x
🌐 StarterNext.js (Turbopack)1.087s (~)2.010s (~)0.923s101.01x
💻 LocalNext.js (Turbopack)1.100s (~)2.012s (~)0.912s101.02x
🌐 RedisNext.js (Turbopack)1.108s (+1.5%)2.013s (~)0.904s101.03x
💻 LocalExpress1.114s (~)2.007s (~)0.893s101.03x
🌐 MongoDBNext.js (Turbopack)1.300s (-0.5%)2.016s (~)0.716s101.21x
🌐 TursoNext.js (Turbopack)1.319s (~)2.012s (~)0.693s101.22x
🐘 PostgresNext.js (Turbopack)1.930s (+3.0%)2.118s (-4.5%)0.188s101.79x
🐘 PostgresNitro2.148s (+33.8% 🔺)3.014s (+49.8% 🔺)0.866s101.99x
🐘 PostgresExpress2.171s (-1.8%)3.012s (~)0.841s102.02x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro3.002s (+4.6%)4.037s (+7.3% 🔺)1.035s101.00x
▲ VercelExpress3.007s (+8.6% 🔺)3.975s (+9.2% 🔺)0.968s101.00x
▲ VercelNext.js (Turbopack)3.115s (+4.5%)3.700s (-13.5% 🟢)0.585s101.04x

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

workflow with 10 sequential steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Nitro10.545s (-2.0%)11.011s (~)0.466s51.00x
🌐 StarterNext.js (Turbopack)10.598s (~)11.012s (~)0.415s51.01x
💻 LocalNext.js (Turbopack)10.666s (~)11.018s (~)0.352s51.01x
🌐 RedisNext.js (Turbopack)10.710s (~)11.022s (~)0.312s51.02x
💻 LocalExpress10.799s (~)11.016s (~)0.217s51.02x
🌐 MongoDBNext.js (Turbopack)11.956s (-2.6%)12.231s (-6.1% 🟢)0.275s51.13x
🌐 TursoNext.js (Turbopack)12.214s (~)13.023s (~)0.809s51.16x
🐘 PostgresNext.js (Turbopack)13.613s (-8.8% 🟢)14.033s (-9.1% 🟢)0.420s51.29x
🐘 PostgresExpress20.425s (~)21.031s (~)0.606s51.94x
🐘 PostgresNitro20.490s (+32.4% 🔺)21.030s (+31.2% 🔺)0.540s51.94x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro24.492s (+7.4% 🔺)25.605s (+9.9% 🔺)1.113s51.00x
▲ VercelNext.js (Turbopack)24.582s (+8.1% 🔺)25.531s (+8.9% 🔺)0.949s51.00x
▲ VercelExpress24.658s (+11.6% 🔺)25.555s (+12.2% 🔺)0.898s51.01x

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

Promise.all with 10 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
🌐 Starter🥇 Next.js (Turbopack)1.352s (~)2.008s (~)0.656s151.00x
💻 LocalNitro1.354s (-2.9%)2.006s (~)0.652s151.00x
🌐 RedisNext.js (Turbopack)1.380s (+1.6%)2.011s (~)0.632s151.02x
💻 LocalNext.js (Turbopack)1.385s (-0.7%)2.011s (~)0.626s151.02x
💻 LocalExpress1.414s (~)2.006s (~)0.592s151.05x
🐘 PostgresNext.js (Turbopack)1.858s (-4.6%)2.013s (-10.1% 🟢)0.155s151.37x
🌐 MongoDBNext.js (Turbopack)2.128s (-2.0%)3.015s (~)0.886s101.57x
🌐 TursoNext.js (Turbopack)2.220s (~)3.011s (~)0.791s101.64x
🐘 PostgresNitro2.395s (+27.5% 🔺)3.011s (+44.9% 🔺)0.616s101.77x
🐘 PostgresExpress2.413s (-4.2%)3.013s (~)0.600s101.78x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Nitro3.176s (+13.4% 🔺)4.049s (+11.0% 🔺)0.873s81.00x
▲ VercelExpress3.198s (+13.6% 🔺)4.050s (+12.1% 🔺)0.852s81.01x
▲ VercelNext.js (Turbopack)3.230s (+12.0% 🔺)3.892s (+3.6%)0.662s81.02x

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

Promise.all with 25 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Nitro1.991s (-10.2% 🟢)2.399s (-23.3% 🟢)0.408s131.00x
💻 LocalNext.js (Turbopack)2.067s (+0.7%)2.879s (-0.8%)0.812s111.04x
💻 LocalExpress2.207s (-1.5%)3.151s (-1.3%)0.944s101.11x
🐘 PostgresNext.js (Turbopack)2.429s (-10.3% 🟢)3.017s (~)0.588s101.22x
🌐 StarterNext.js (Turbopack)2.477s (+0.6%)3.023s (~)0.546s101.24x
🌐 RedisNext.js (Turbopack)2.505s (+1.2%)3.015s (~)0.509s101.26x
🐘 PostgresExpress2.889s (-8.8% 🟢)3.349s (-11.4% 🟢)0.460s91.45x
🐘 PostgresNitro2.944s (+6.3% 🔺)3.355s (+4.4%)0.411s91.48x
🌐 TursoNext.js (Turbopack)4.770s (+3.6%)5.186s (~)0.416s62.40x
🌐 MongoDBNext.js (Turbopack)4.775s (+1.4%)5.184s (~)0.409s62.40x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Next.js (Turbopack)3.508s (-39.8% 🟢)4.204s (-38.7% 🟢)0.696s81.00x
▲ VercelExpress3.553s (-19.0% 🟢)4.290s (-15.0% 🟢)0.737s81.01x
▲ VercelNitro3.679s (-36.5% 🟢)4.595s (-29.2% 🟢)0.917s71.05x

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

Promise.race with 10 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Nitro1.347s (-5.2% 🟢)2.005s (~)0.659s151.00x
🌐 StarterNext.js (Turbopack)1.377s (+1.2%)2.008s (~)0.631s151.02x
🌐 RedisNext.js (Turbopack)1.386s (~)2.011s (~)0.625s151.03x
💻 LocalNext.js (Turbopack)1.388s (-1.6%)2.012s (~)0.623s151.03x
💻 LocalExpress1.413s (-1.2%)2.006s (~)0.593s151.05x
🐘 PostgresNext.js (Turbopack)1.647s (+1.1%)2.012s (~)0.365s151.22x
🐘 PostgresExpress1.956s (+11.1% 🔺)2.325s (+15.6% 🔺)0.369s131.45x
🐘 PostgresNitro2.120s (+18.9% 🔺)2.318s (+7.6% 🔺)0.198s131.57x
🌐 MongoDBNext.js (Turbopack)2.132s (~)3.017s (~)0.885s101.58x
🌐 TursoNext.js (Turbopack)2.267s (+2.1%)3.040s (+0.9%)0.773s101.68x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express3.115s (-1.5%)3.792s (-5.6% 🟢)0.677s81.00x
▲ VercelNext.js (Turbopack)3.118s (~)3.943s (-1.1%)0.825s81.00x
▲ VercelNitro3.274s (~)4.113s (~)0.839s81.05x

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

Promise.race with 25 concurrent steps

💻 Local Development

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Nitro2.012s (-11.9% 🟢)2.405s (-24.6% 🟢)0.393s131.00x
💻 LocalNext.js (Turbopack)2.162s (+0.6%)2.949s (-1.8%)0.787s111.07x
💻 LocalExpress2.206s (-4.7%)3.178s (-2.7%)0.972s101.10x
🐘 PostgresNext.js (Turbopack)2.445s (-0.5%)3.025s (~)0.580s101.22x
🌐 StarterNext.js (Turbopack)2.483s (+1.0%)3.008s (~)0.525s101.23x
🌐 RedisNext.js (Turbopack)2.513s (+0.7%)3.012s (~)0.499s101.25x
🐘 PostgresExpress2.676s (-1.7%)3.012s (-0.5%)0.336s101.33x
🐘 PostgresNitro2.860s (+5.7% 🔺)3.013s (-0.7%)0.153s101.42x
🌐 TursoNext.js (Turbopack)4.723s (~)5.210s (+0.5%)0.487s62.35x
🌐 MongoDBNext.js (Turbopack)4.730s (+0.5%)5.183s (~)0.453s62.35x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express3.403s (+6.4% 🔺)3.924s (+8.3% 🔺)0.521s81.00x
▲ VercelNext.js (Turbopack)3.538s (+3.7%)3.996s (-5.6% 🟢)0.458s81.04x
▲ VercelNitro3.816s (+17.5% 🔺)4.500s (+15.0% 🔺)0.684s71.12x

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

Stream Benchmarks(includes TTFB metrics)
workflow with stream

💻 Local Development

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
💻 Local🥇 Nitro0.113s (-34.8% 🟢)0.999s (+0.7%)0.012s (-29.3% 🟢)1.018s (~)0.905s101.00x
🌐 StarterNext.js (Turbopack)0.130s (+1.2%)1.005s (~)0.000s (NaN%)1.011s (~)0.881s101.16x
💻 LocalNext.js (Turbopack)0.142s (-3.9%)1.003s (~)0.021s (+25.6% 🔺)1.031s (~)0.889s101.26x
🌐 RedisNext.js (Turbopack)0.147s (-2.3%)1.005s (~)0.000s (-100.0% 🟢)1.014s (~)0.867s101.31x
💻 LocalExpress0.177s (~)0.992s (~)0.016s (-4.1%)1.023s (~)0.845s101.57x
🌐 TursoNext.js (Turbopack)0.468s (~)0.982s (~)0.000s (-100.0% 🟢)1.013s (~)0.545s104.16x
🌐 MongoDBNext.js (Turbopack)0.504s (+5.4% 🔺)0.950s (-2.6%)0.000s (+Infinity% 🔺)1.016s (~)0.512s104.48x
🐘 PostgresNext.js (Turbopack)0.577s (-21.1% 🟢)0.966s (-3.0%)0.000s (~)1.016s (-8.9% 🟢)0.439s105.12x
🐘 PostgresNitro2.294s (+74.6% 🔺)2.748s (+59.5% 🔺)0.000s (+Infinity% 🔺)3.015s (+49.8% 🔺)0.720s1020.38x
🐘 PostgresExpress2.349s (+6.9% 🔺)2.696s (-5.3% 🟢)0.000s (~)3.014s (~)0.664s1020.87x

▲ Production (Vercel)

WorldFrameworkWorkflow TimeTTFBSlurpWall TimeOverheadSamplesvs Fastest
▲ Vercel🥇 Express3.344s (+10.0% 🔺)3.722s (+15.6% 🔺)0.935s (+28.9% 🔺)5.281s (+18.2% 🔺)1.936s101.00x
▲ VercelNext.js (Turbopack)3.361s (+12.0% 🔺)3.568s (+9.2% 🔺)1.539s (+226.2% 🔺)5.591s (+31.7% 🔺)2.230s101.00x
▲ VercelNitro3.390s (+10.1% 🔺)3.554s (+4.7%)1.491s (+205.6% 🔺)5.571s (+26.5% 🔺)2.180s101.01x

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

Summary

Fastest Framework by World

Winner determined by most benchmark wins

World🥇 Fastest FrameworkWins
💻 LocalNitro8/8
🐘 PostgresNext.js (Turbopack)8/8
▲ VercelExpress4/8
Fastest World by Framework

Winner determined by most benchmark wins

Framework🥇 Fastest WorldWins
Express💻 Local8/8
Next.js (Turbopack)🌐 Starter6/8
Nitro💻 Local8/8
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
  • 🌐 Starter: Community world (local development)
  • 🌐 Turso: Community world (local development)
  • 🌐 MongoDB: Community world (local development)
  • 🌐 Redis: Community world (local development)
  • 🌐 Jazz: Community world (local development)

📋 View full workflow run

@TooTallNateGraphite App

Copy link
Copy Markdown
MemberAuthor

This stack of pull requests is managed by Graphite. Learn more about stacking.

@TooTallNate
TooTallNate marked this pull request as ready for review January 21, 2026 23:46
CopilotAI review requested due to automatic review settings January 21, 2026 23:46
@TooTallNate
TooTallNate requested review from VaguelySerious, karthikscale3 and pranaygp and removed request for CopilotJanuary 21, 2026 23:46
@TooTallNate
TooTallNate merged commit 7023d5e into mainJan 22, 2026
98 checks passed
@TooTallNate
TooTallNate deleted the 01-21-fix_getworld_import_naming branch January 22, 2026 07:22
VaguelySerious pushed a commit that referenced this pull request Jan 23, 2026
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.

2 participants

@TooTallNate@pranaygp