
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-pragmatic-router
Advanced tools
A simple react router for lazy people, without all the added complexity of react-router and the likes.
npm i react-pragmatic-router
<BrowserRouter>
<Route pattern="/" element={() => <SamplePage />} />
<Route pattern="/second" element={({ params }) => <SecondPage />} />
<Route pattern="/second/third" element={() => <ThirdPage />} />
<Route pattern="/data/:someId" element={({ params }) => <ParamsPage someId={params.someId} />} />
<Route pattern="/data/:someId/more/:someOtherId" element={({ params }) => <NestedParamsPage
someId={params.someId}
someOtherId={params.someOtherId}
/>} />
</BrowserRouter>
<Router location={"/"} setLocation={(newLocation: string) => {}}>
<Route pattern="/" element={() => <SamplePage />} />
<Route pattern="/second" element={({ params }) => <SecondPage />} />
<Route pattern="/second/third" element={() => <ThirdPage />} />
<Route pattern="/data/:someId" element={({ params }) => <ParamsPage someId={params.someId} />} />
<Route pattern="/data/:someId/more/:someOtherId" element={({ params }) => <NestedParamsPage
someId={params.someId}
someOtherId={params.someOtherId}
/>} />
</Router>
import { DOMRouter, Route } from 'react-pragmatic-router';
function Page(props: { someParam: string }) {
return <div>
<h1>Param: {props.someParam}</h1>
</div>;
}
function App() {
return <BrowserRouter>
<Route pattern="/page/:someParam" element={({ params }) => <Page someParam={params.someParam} />} />
</BrowserRouter>;
}
import { Link, NavLink } from 'react-pragmatic-router';
function Page(props: { someParam: string }) {
return <div>
<h1>Link</h1>
<Link href="/some-other-page">To some other page</Link>
<NavLink activeClass="active" exact href="/some-other-page">Navlink</NavLink>
</div>;
}
Exact is the same as adding ^ before and $ after your route ^/posts$ and /posts with exact is the same
These two routes does the same thing
<BrowserRouter>
<Route pattern="/posts" exact element={() => <PostsPage />} />
<Route pattern="^/posts$" element={() => <PostsPage />} />
</BrowserRouter>;
<BrowserRouter>
<SwitchRoute
exact
patterns={{
'/posts/create-post': () => <CreatePostPage />,
'/posts/:postId': ({ params }) => <PostPage id={params.postId} />,
}}
/>
</BrowserRouter>;
import { Link, NavLink, useRouter } from 'react-pragmatic-router';
function Page(props: { someParam: string }) {
const { setLocation } = useRouter();
return <div>
<h1>Programmatic navigation</h1>
<button onClick={() => setLocation(`/some-new-location`)}>Trigger navigation</button>
</div>;
}
import { ReactNode, useMemo } from 'react';
import { useRouter, patternMatcher, ParamsType } from 'react-pragmatic-router';
import { AnimatePresence, motion } from 'framer-motion';
function AnimatedRoute(props: {
pattern: string;
exact?: boolean;
element: ({ params }: { params: ParamsType }) => ReactNode
}) {
const { location } = useRouter();
const matches = patternMatcher(props.pattern, location, props.exact);
const cached = useMemo(() => {
if (!matches) return null;
return props.element({ params: matches?.groups || {} });
}, [!!matches, JSON.stringify(matches?.groups)]);
return <AnimatePresence mode="wait">{!!matches && cached}</AnimatePresence>;
}
function AnimatedPage() {
return <motion.div
initial={{ opacity: 0, y: '-20px' }}
animate={{ opacity: 1, y: '0px' }}
exit={{ opacity: 0, y: '-20px' }}
transition={{ duration: 0.2 }}
style={{
position: 'fixed',
top: '0',
left: '0',
width: '100vw',
height: '100vh',
background: "white"
}}
>
<h1>Animated page!</h1>
</motion.div>;
}
export function App() {
return <BrowserRouter>
<AnimatedRoute pattern="/" element={() => <AnimatedPage />} />
<AnimatedRoute pattern="/some-other-page" element={() => <AnimatedPage />} />
</BrowserRouter>;
}
FAQs
A simple react router for lazy people, without all the added complexity of react-router and the likes.
We found that react-pragmatic-router demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.