One of the biggest news of the year is the acquisition of Bun by Anthropic, the company behind Claude Code and the Claude family of LLMs.
Bun the one-in-all Javascript runtime was our champion in 2022. It's interesting to see how the sudden rise of LLMs caused the shift of the vision from building a cloud product (similar to what Deno offers with Deno Deploy) to powering AI agents.
AI coding tools are getting really good, really fast and they're using Bun's single-file executables to ship CLIs and agents that run everywhere.
Another news that matters for the JS community: Lee Robinson who was the face of Next.js for years (and our Guest Writer in 2020!) joined Cursor, providing educational content about AI to developers; see his Learning course, excellent for beginners.
Speaking of familiar faces in the Open-source community, Anthony Fu (Vite, Vitest and so many projects!), Daniel Roe and Sébastien Chopin (Nuxt) joined Vercel, it looks like a good sign for the diversity of the frameworks considering the company is known for its focus on Next.js and React.
The announcement of Remix 3 was a bold move as Remix creators (also the creators of React Router) decided to ditch React, betting more than ever on the web platform.
It does not mean Remix users will lose their favorite framework, Remix 2 has morphed into React Router framework.
An interesting inside article about how React and Remix Choose Different Futures.
React is following a path of stability, even if it means sacrificing complexity, while Remix is choosing simplicity as their primary goal.
The official release of Remix 3 will be a highlight of 2026, for sure.
Speaking of React, the directive pattern caused some controversy this year. Directive pattern started with use strict a long time ago, way before React was born and the topic became hot recently.
- React Server Components (RSC) introduced
use client to tell the compiler a component is client-side only.
use server exposes functions as HTTP end-points called Server Actions
use cache, introduced by Next.js 16, sets up caching at the page, component or function level
- The brand new Workflow project (created two months ago) takes directive to the next level with
use workflow and use step that have an impact in the infra layer, allowing the creation of powerful async workflows that can run for long periods of time.
These directives rely on build-time conventions and not explicit runtime contracts, generating interesting discussions about the future of the language that is now 30 years old!
Read about Directives and the Platform Boundary from Tanner Linsley (the man behind the TanStack!)
2025 was not all sunshine and innovation. We have already mentioned the React2Shell vulnerability found at the end of the year, but the whole npm ecosystem was under attack with the "Shai-Hulud" supply chain attack, a sophisticated campaign that compromised thousands of npm packages and GitHub repositories. This attack highlighted the fragility of our dependency ecosystem and the critical need for better security practices, dependency auditing, and supply chain protection.
What to expect in 2026? Mastering agent workflows seems to be a must-have skill for developers, in the same time we don't want to surrender all control to AI and compromise with quality and clean code.
Finding the right balance will be the key!
Overall winner: n8n 🏆
n8n is the absolute winner of the 2025 rankings, and the numbers are insane: +112,000 stars in a single year. No project has received that amount of stars in a single year since we started running the Rising Stars.
n8n is a fair-code workflow automation platform with native AI capabilities that allows you to connect various apps and services through visual workflows. Its success reflects the growing need for no-code automation tools, now enhanced with AI integrations to support emerging agent-based workflows.
In the workflow automation space, you may be interested in the following two projects created in 2025:
Three other projects related to AI make the TOP 10:
Number 2: shadcn-ui
At #2, shadcn/ui, our champion of 2023 and 2024, keeps its tremendous momentum.
If you have checked our previous editions, you already know it's a set of consistent React components crafted with taste and great attention to details (accessibility, keyboard interactions, etc.), gathering the best of headless components such as Radix UI, TanStack Table...
It's also a registry that has made a new mode of distributing components possible. A lot of projects define themselves as "shadcn/ui" projects, and about 100 projects are listed in the official Registry Directory.
The most amazing feature of shadcn/ui is that it found the sweet spot between functionality available out of the box and customizability.
Beyond the newly added components, shadcn/ui is no longer tightly coupled to Radix UI and now supports Base UI (number 4 in the component libraries rankings)
There was a criticism that sites built with it tend to look similar; however, the ability to customize the look-and-feel has improved a lot with the introduction of new styles and a new create page to build your own custom theme.
Number 3: react-bits
React Bits is a collection of fancy animated components (background effects, text animations, cards...) for React, perfect for building memorable websites.
Interestingly, it's distributed as a shadcn/ui project, available from the shadcn/ui registry using the command line or via good old copy-paste in your codebase. Some of the components require a dependency: either GSAP or motion.
The documentation comes with a Background Studio that lets you adjust and customize the setup of all components (colors, speed, number of particles...) and export as a snippet you can copy-paste in your codebase.
Also available as a Vue version: Vue Bits.
Special Pick
At number 7, Better Auth is a great solution to handle authentication in your application using your own infrastructure. It comes with a system of plugins to address the most common needs: magic links, one-time passwords, multi-tenant architecture to support organizations with members and roles, and many more.
It's framework-agnostic and can be used with any framework, but it comes with great integrations for all major fullstack frameworks.