T8 React Router

Concise router for React apps

Docs GitHub

npm i @t8/react-router

Features: Concise API · Incrementally adoptable route type safety with fallback typing · useState-like URL params management · Straightforward CSR/SSR · Middleware · Lazy routes · View transitions

// Core parts

// URL-based rendering
at("/", <Intro/>)
<header className={at("/", "full", "compact")}>

// SPA navigation
- window.location.href = "/x";
+ route.href = "/x";

// SPA route link
- <a href="/">Intro</a>
+ <A href="/">Intro</A>