Impact
Framework Tracker measures frameworks, but the comparisons also surface concrete improvement opportunities in the frameworks themselves, their routers, and their documentation. This page collects upstream changes that came out of the project or were influenced by its output.
Faster link rendering in Nuxt and Vue4
Section titled “Faster link rendering in Nuxt and Vue4”- perf(nuxt): render internal
<NuxtLink>anchors directly on server renders internal<NuxtLink>anchors directly on the server instead of building reactive link state, cutting server render time for internal links by roughly 58%. Merged into Nuxt. - perf(link): skip reactivity when rendering on the server
skips Vue reactivity when rendering
<RouterLink>during SSR, making server-rendered links roughly 1.5-2.2x faster. Proposed upstream to Vue Router.
Faster Next.js rendering
Section titled “Faster Next.js rendering”- [Server Components] Walk parsed JSON instead of using reviver for parsing RSC payload
replaces the
JSON.parsereviver used to deserialize React Server Components payloads with a plain parse followed by a JavaScript walk, making RSC payload parsing around 75% faster and speeding up rendering in frameworks built on top of it, including Next.js. Merged into React.
Clearer Solid Router documentation
Section titled “Clearer Solid Router documentation”- docs: note future A component deprecation
updates the Solid Router docs to note that the
<A>component will be deprecated in favor of native anchors, steering developers toward better practices. Merged into the Solid docs.