Github organization invitation with text "You've been invited to the Storybook organization!".
Excited to announce that I've officially joined @chromatic.com! My main focus will be working around features related to @vitest.dev ๐ค
09.02.2026 09:47 โ
๐ 58
๐ 4
๐ฌ 5
๐ 3
Thank you so much for sponsoring!
10.02.2026 00:27 โ
๐ 3
๐ 0
๐ฌ 0
๐ 0
Release v3.0.1-alpha.2 ยท nitrojs/nitro
๐ This release contains many improvements since the alpha.1 release.
โณ We took extra time to ensure everything works well by testing against real-world projects using Nitro v3. We are closer to Bet...
Nitro v3 alpha.2:
๐ฅ Rolldown optimized
๐ฆ Dependencies bundled by default
โ React Server Components support (experimental)
๐ Many more improvements
TIP: Upgrade to the latest nitro() plugin with vite@beta (rolldown) and enjoy a seriously mind-blowing performance boost ๐
21.01.2026 19:53 โ
๐ 62
๐ 9
๐ฌ 2
๐ 0
GitHub - hi-ogawa/vite-rsc-runtime-integration-examples
Contribute to hi-ogawa/vite-rsc-runtime-integration-examples development by creating an account on GitHub.
I put together Vite RSC example repo with Cloudflare and Nitro plugins. This includes React Router framework mode templates with both plugins. Thanks to Cloudflare and Nitro teams for the collaboration to establish `__VITE_ENVIRONMENT_RUNNER_IMPORT__` convention!
20.01.2026 10:42 โ
๐ 6
๐ 0
๐ฌ 1
๐ 0
Two istanbul coverage reports side-by-side. Left one titled "vite@7 + esbuild", right one "vite@8-beta + rolldown + oxc". Report on the right demonstrates how ignore hints work without @preserve keyword.
When using vite@8-beta with Vitest users no longer need to add magical '@preserve' keywords in their coverage ignore hints. Originally this work-around was needed due to esbuild's (intentional) lack of support for comment preserving. Oxc has built-in support for JS coverage tools' ignore hints.
08.12.2025 11:50 โ
๐ 16
๐ 2
๐ฌ 0
๐ 1
Vitest 4.0.15 comes with a cool experimental feature: Imports Breakdown. Every module shows how long it took to load in UI and in the VSCode extension!
Pass down `--experimental.printImportBreakdown` to also see it in your terminal.
vitest.dev/guide/ui.htm...
02.12.2025 16:42 โ
๐ 42
๐ 8
๐ฌ 5
๐ 1
A screenshot of Vitest terminal showing the times for two runs. The first run takes 9.65s, the second run takes 5.90s.
Vitest 4.0.11 adds an experimental `fsModuleCache` flag to cache module transforms between reruns. Learn more: vitest.dev/config/exper...
This is an opt-in feature, please let us know how it works for you!
And example of a single test file that imports a lot of files (~1500). Almost a 50% boost!
20.11.2025 12:04 โ
๐ 55
๐ 10
๐ฌ 4
๐ 0
Waku's Cloudflare example is also updated to use this approach, which now allows accessing bindings API during SSG github.com/wakujs/waku/...
06.11.2025 09:38 โ
๐ 3
๐ 0
๐ฌ 1
๐ 0
I created a package to expose `import "cloudflare:workers"` through Node custom loader and wrangler's `getPlatformProxy`.
Here is a React Router RSC framework mode example with Cloudflare KV github.com/hi-ogawa/vit....
05.11.2025 09:13 โ
๐ 6
๐ 0
๐ฌ 1
๐ 0
Waku now supports custom base. Here is an example of SSG site deployed to Github Pages hi-ogawa.github.io/waku-example...
`@vitejs/plugin-rsc` takes care of base path for handling static assets, so the required change on Waku was only application routing logic github.com/wakujs/waku/...
28.10.2025 00:43 โ
๐ 5
๐ 1
๐ฌ 0
๐ 0
Nice! Thanks for pinging the team ๐
27.10.2025 23:47 โ
๐ 2
๐ 0
๐ฌ 1
๐ 0
My talk slides are available here hiroshi-talks.vercel.app/2025-10-25/1 also with source code in github.com/hi-ogawa/talks It was a great experience to talk with many awesome folks in person! Thanks @vuefes.bsky.social for the opportunity!
27.10.2025 09:18 โ
๐ 14
๐ 3
๐ฌ 0
๐ 0
This is possible in principle though there's some limitations github.com/hi-ogawa/vit.... It turns out React Router RSC API allows overriding internal RSC requests without patching global `fetch`, Not so obvious demo, but here "server" component is accessing `window.navigator`. ๐
22.10.2025 10:14 โ
๐ 17
๐ 2
๐ฌ 1
๐ 0
First time speaking at a conference!
18.10.2025 04:13 โ
๐ 21
๐ 2
๐ฌ 3
๐ 0
Okay, here is my attempt with a fun demo! github.com/jacob-ebey/v...
17.10.2025 03:37 โ
๐ 3
๐ 0
๐ฌ 1
๐ 0
There's also an example / test case here github.com/vitejs/vite-... Though mine is quite a rough sketch, the important part is to use temporary references to achieve "donut pattern" (i.e. static shell + dynamic children). I've wanted Jacob to pick up this part in his library.
17.10.2025 01:01 โ
๐ 2
๐ 0
๐ฌ 2
๐ 0
Also just right time, Remix 3 came out with a builtin concept of "hydrated component", so I ported Preact island demo. The plugin here implements `/islands/` and `/frames/` directories convention to auto wrap component by Remix `hydrated` and `Frame`. github.com/hi-ogawa/vit...
15.10.2025 04:24 โ
๐ 3
๐ 1
๐ฌ 1
๐ 0
Here are examples for React router, Vue router, and Preact-based islands. These are super minimal examples, but eventually I'm hoping to be able to provide primitives for higher level meta-frameworks just like `@vitejs/pllugin-rsc` has provided foundation for Waku and React router.
15.10.2025 04:24 โ
๐ 2
๐ 0
๐ฌ 1
๐ 0
I just realized my name is on React 19.2.0 release note. Due to client reference being lazy component, it was super tricky for Vite RSC and Waku (though we ended up finding a workaround). I'm glad I was able to land my first PR on React to fix this!
08.10.2025 09:19 โ
๐ 20
๐ 0
๐ฌ 1
๐ 0
For this use of `"use server"` to work, the route needs to be `ServerComponent` route.
26.09.2025 06:18 โ
๐ 1
๐ 0
๐ฌ 1
๐ 0
Quick improvement to reduce potential confusion of "use server" on React Router RSC framework mode github.com/vitejs/vite-... Previously following "use server" is silently ignored, but this should be flagged as build error as React router inject `"use client"` for `export default` routes.
26.09.2025 06:18 โ
๐ 1
๐ 0
๐ฌ 1
๐ 0
Forgot to mention that this means it works with Waku too (and this is actually what I tested originally) github.com/hi-ogawa/wak...
25.09.2025 06:42 โ
๐ 0
๐ 0
๐ฌ 0
๐ 0
I've been experimenting with Nitro and made a plugin for `@vitejs/plugin-rsc`-based app
to be deployed anywhere. Here is an example with React Router RSC! github.com/hi-ogawa/rea...
25.09.2025 03:26 โ
๐ 34
๐ 6
๐ฌ 1
๐ 1
Read the updated documentation for more info! github.com/vitejs/vite-...
It's good to know Next.js clarifies this as a "framework feature" and not package's own behavior, which I obviously referenced it when adding the doc ๐ nextjs.org/docs/app/get...
17.09.2025 04:35 โ
๐ 0
๐ 0
๐ฌ 0
๐ 0
Improved the error message of invalid `server-only` and `client-only` imports on Vite RSC plugin! These "only" packages provide errors only during runtime on their own, but I didn't see any reason not to surface as build time error, so it has been included as a "plugin feature".
17.09.2025 04:35 โ
๐ 3
๐ 0
๐ฌ 1
๐ 0