npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-router-dom-5-to-6

v0.0.2

Published

codemod cli for react-router-dom v6 upgrade ⚒️

Downloads

13

Readme

React Router DOM 5 to 6

A collection of codemod scripts that help direct upgrade React Router DOM 6 using jscodeshift. Inspired by Ant Design v5 Codemod.

Usage

Before run codemod scripts, you'd better make sure to commit your local git changes firstly.

npx react-router-dom-5-to-6 src

If you want to use a specific codemod script, you can use the following command.

npx react-router-dom-5-to-6 src --transform=<codemod-script-name>

Compared with react-router-v6-codemods

react-router-v6-codemods script adopts a progressive upgrade scheme using react-router-dom-v5-compat, and will be in the v5 version for a long time.

This script adopts a direct upgrade scheme, in order to quickly try out the new features of the v6 version and analyze their impact on the performance of the target project, such as LCP indicators.

Codemod scripts introduction

change-match-path-args-order

Upgrade parameters order of the matchPath method.

import { matchPath } from 'react-router-dom';

const match = matchPath(
- '/users/123',
  {
    path: '/users/:id',
    exact: true, // Optional, defaults to false
    strict: false, // Optional, defaults to false
  },
+ '/users/123',
);

compat-function-and-type

Compatible with the withRouter and useHistory methods in v5.

-import { withRouter, useHistory } from 'react-router-dom';
+import { withRouter, useHistory } from 'react-router-dom-5-to-6-compat';

compat-nav-link-active-prop

Compatible with the activeClassName and activeStyle properties of <NavLink> component.

-import { NavLink } from 'react-router-dom';
+import { NavLink } from 'react-router-dom-5-to-6-compat';

export function Foo() {
  return <NavLink activeClassName="active" />;
}

rename-nav-link-prop

Upgrade the property name of the <NavLink> component.

import { NavLink } from 'react-router-dom';

export function App() {
- return <NavLink exact />;
+ return <NavLink end />;
}

repalce-react-router-with-react-router-dom

Replace react-router with react-router-dom.


```diff
-import { useHistory } from 'react-router';
+import { useHistory } from 'react-router-dom';

replace-redirect-to-navigate

Replace <Redirect> component with <Navigate> component.

-import { Redirect } from 'react-router-dom';
+import { Navigate } from 'react-router-dom';

export function App() {
  return (
    <div>
-     <Redirect to="about" />
+     <Navigate to="about" replace />
-     <Redirect to="home" push />
+     <Navigate to="home" />
    </div>
  );
}

replace-use-route-match-with-use-match

Replace useRouteMatch method with useMatch.

import { useRouteMatch } from 'react-router-dom';

export function App() {
- useRouteMatch({ strict: true });
+ useMatch({ end: true });
- useRouteMatch({ sensitive: true });
+ useMatch({ caseSensitive: true });

  return null;
}

route-prop-migration

Migrate the properties of <Route> component.

import { Route } from 'react-router-dom';
import { App } from './app';

export function Foo() {
- return <Route exact path="users" component={App} />;
+ return <Route path="users" component={<App />} />;
}

upgrade-switch-to-routes

Upgrade <Switch> component to <Routes> component.

- import { Switch, Route } from 'react-router-dom';
+ import { Routes, Route } from 'react-router-dom';

export function App() {
  return (
-   <Switch>
+   <Routes>
      <Route path="/project/:id" component={Project} />
-   </Switch>
+   </Routes>
  );
}

License

MIT