Best of React Router2025

  1. 1
    Article
    Avatar of tilThis is Learning·32w

    ReactJS Day 2025: TanStack Start & Real World Experiences

    A conference attendee shares their experience at ReactJSDay 2025, where they presented on TanStack Start and TanStack Router. During the talk, a question arose about migrating large React Router codebases to TanStack Router. Later, another attendee spontaneously gave a lightning talk sharing their team's real-world experience successfully completing such a migration, demonstrating the value of community knowledge sharing at tech conferences.

  2. 2
    Article
    Avatar of newstackThe New Stack·42w

    Next.js, React Router, TanStack: When To Use Each

    Developer Ankita Kulkarni compares three React frameworks and their ideal use cases. Next.js excels for SEO-focused sites like e-commerce and marketing pages, offering built-in optimization and React Server Components but with a steeper learning curve. React Router v7 emphasizes web standards and progressive enhancement, making it suitable for applications requiring deep nested routing and platform flexibility. TanStack Start provides full type safety and powerful client-side interactivity, ideal for SaaS dashboards and admin panels, though it's still in beta and not suitable for minimal JavaScript sites.

  3. 3
    Article
    Avatar of twirThis Week In React·50w

    This Week In React #238: React Router, RSC, shadcn/ui, React Aria, TanStack, ForesightJS, Cosmos

    Weekly React ecosystem roundup covering React Router's new open governance model and v8 preview, Dan Abramov's deep dive into RSC module systems, and various library updates including TanStack Router 1.121 and shadcn/ui improvements. React Native section highlights iOS 26 Liquid Glass UI support, new JSI runtime APIs, and multiple package updates. JavaScript ecosystem news includes Oxlint 1.0 stable release, Node.js TypeScript support improvements with Amaro 1.0, and Safari 26 beta WebKit features.

  4. 4
    Article
    Avatar of reactstatusReact Status·24w

    React Status Issue 455: December 10, 2025

    This newsletter issue covers React ecosystem updates including discussions on data fetching and state management patterns, a security vulnerability affecting React applications, updates to React Router and its integration with Shopify, and various tools and libraries for React development. The issue also mentions TanStack releases and broader JavaScript ecosystem news.

  5. 5
    Video
    Avatar of huxnwebdevHuXn WebDev·27w

    The Hidden Truth Behind Remix: What REALLY Happened!

    Remix is a fullstack web framework created by the developers behind React Router (Ryan Florence and Michael Jackson). Initially launched as a paid product in 2020, it went open source in 2021 and was acquired by Shopify in 2022. The framework focuses on web standards, server-side rendering, parallel data loading, and progressive enhancement. In 2024, Remix merged with React Router v7, and in 2025, Remix 3 made a radical shift away from React to Preact, prioritizing minimal dependencies and native web APIs, though this breaking change divided the community.

  6. 6
    Article
    Avatar of ergq3auoeReinier·39w

    Build a Complete Babymart E-commerce Website | Part 2: Admin Dashboard Setup with Vite, React Router

    A tutorial series focusing on building an admin dashboard for a baby products e-commerce website. This second part covers setting up the dashboard using React, Vite, and React Router, with Cloudinary integration for image hosting functionality.

  7. 7
    Article
    Avatar of tigerabrodiTiger's Place·1y

    How React Router works under the hood

    This post delves into the internal workings of React Router as a full-stack web framework, detailing its request handling types, server-side rendering benefits, hydration process, client-side navigation strategy, and management of race conditions. The post emphasizes understanding the framework's functionality beyond surface-level usage.