Amazing collab with the friendly TanStack team! 🤝
Their unique RSC approach breaks traditional root-level limits—it's brilliant.
Rsbuild & Rspack are evolving fast. We're committed to being the universal RSC infra to support more frameworks! 🚀
Another build path just washed ashore 🏖️
TanStack Start now supports Rsbuild 2 alongside Vite, bringing the full Start feature set to the Rspack / Webpack ecosystem.
tanstack.com/blog/start-adds…
❓Did you know you can write “in-source tests” in JavaScript
Rstest supports in-source tests — write your test right next to the code. Test code is stripped in production builds. Zero bundle cost. ⚡️
Rust-style DX, now in your JS toolchain 🦀
#JavaScript#Rstest#Rspack
Mind blown! 🤯 I've been using codspeed's MCP, and my AI Agent used its insights to optimize a case in rspack-sources—boosting performance by a staggering 98.96%!
Seriously, my god, everyone needs to give codspeed a try right now. 👇
github.com/rstackjs/rspack-s…
Successfully ran React Router’s RSC Data Mode on top of rsbuild-plugin-rsc.
Server Actions, SSR Flight streams, and hydration are all working seamlessly.
Want to try it out? Check out the example repo 👇
github.com/rstackjs/rsbuild-…
Introducing rsbuild-plugin-rsc — React Server Components support for Rsbuild!
Built on Rspack's native RSC implementation.
Still in early beta (0.0.1-beta.1), but we'd love your feedback!
github.com/rspack-contrib/rs…
🚀 Next.js with Rspack now enables persistent caching by default!
The result? Massive speed boosts on warm starts:
• App Router: Builds 1.46× faster, dev 566.7x faster (cache vs. no-cache)
• Pages Router: Builds 2.08x faster, dev 3.66x faster
⚡ Next.js with Rspack reaches a new performance milestone!
With the custom Rspack Rust binding for Next.js in next@16.0.0-canary.7:
▶️ Build: 24% quicker
▶️ Dev: 10% quicker
We moved the externals logic to Rust, slashing the JS-Rust communication overhead.
We have a good relationship with the @rspack_dev team (they support Rspack in Next.js), and will work with them on aligning plugin APIs where it makes sense.
We're shifting more focus towards ecosystem compatibility now that we've finally shipped.
Wrote an article about how React Server Components integrate with a bundler. It's a deep dive into how code splitting works, how RSCs eliminate network waterfalls, how environment directives like "use client" work, CSS loading, etc. Check it out! devongovett.me/blog/parcel-r…
Frustrating that using `napi_create_object` & `napi_set_property` in N-API is way slower than converting data to a JSON string in Rust, passing it to JavaScript, and parsing it with `JSON.parse`. 🤣