The JavaScript ecosystem moves fast and most tools, frameworks & libraries are updated quite frequently. Most libraries release minor updates (e.g. 2.3.x
to 2.4.x
) every month and major updates with breaking changes (e.g. 2.x
to 3.x
) every 6 to 12 months.
There are many good reasons for keeping your application’s dependencies up to date:
As a rule of thumb, you should update your application’s dependencies at least once every quarter. Following is a recommended order for updating dependencies in web applications built using React.
React 16 was released recently, and if you’re still using React 15.x
(or lower), it would be good idea to switch to 16.x
as soon as possible, not just for the improvements, but also because it includes several breaking changes. If you’re already on the latest version, you can go through the release notes or the official blog to track changes and decide when it makes sense for you to upgrade.
Links: release notes, official blog
React v16.0 - React Blog_We're excited to announce the release of React v16.0! Among the changes are some long-standing feature requests…_reactjs.org
If your application wasn’t created using [create-react-app](https://github.com/facebook/create-react-app)
, you should consider migrating to it, since it’s a really powerful tool with amazing new features being added every month. It also conveniently bundles all devDependencies
(like Webpack, Babel, Jest etc.) into a single package called [react-scripts](https://github.com/facebook/create-react-app/tree/master/packages/react-scripts)
, so you just have to update one package instead of dozens, without worrying about compatibility issues.
Links: release notes, user guide
facebook/create-react-app_create-react-app - Create React apps with no build configuration._github.com
react-router
has a somewhat poor reputation for revamping the API over and over again, but let’s face it: it’s an indispensable library with no reasonable alternative (except its offspring [@reach/router](https://reach.tech/router)
). React Router v4 is a complete rewrite and several new features and bug fixes are still being added with every minor release, so it would be a good idea to stay up to date.
Links: release notes, official docs
React Router: Declarative Routing for React_Learn once, Route Anywhere_reacttraining.com
Redux is a tiny library with a small and fairly stable API, so it really doesn’t need to be updated frequently (or at all). That said, Redux 4.0 was released recently, and it includes many improvements, so you should consider upgrading. Also, while Redux is quite stable, you might want to update the middleware and helper libraries like react-redux
, redux-saga
, reselect
etc. more frequently.
Links: release notes, official docs
Redux_A predictable state container for JavaScript apps._redux.js.org
Once you the core dependencies have been upgraded, you can go over other dependencies one by one and update each one to the latest version. If you’re using VS Code, you can simply hover over a dependency to find the latest version.
For dependencies with breaking changes, you can decide whether to update immediately or later (if at all), on a case-by-case basis.
Developers often install several libraries that do similar things just to try them out, and forget to remove them from package.json
. Redundant, duplicate and unused dependencies should be removed while updating. If you’re doing this for the first time, don’t be surprised to find that 30–50% of the dependencies in package.json
are never used in the project.
You should also consider removing dependencies that are used very infrequently or can be replaced with small helper functions. Libraries like lodash
and moment
can add over 100 KB to your production bundle. Use a tool like BundlePhobia to decide whether a dependency is worth keeping, especially if it’s only used in a handful of places.
BundlePhobia_Bundlephobia helps you find the performance impact of adding a npm package to your front-end bundle_bundlephobia.com
Updating your project’s dependencies can seems like a boring task, but it’s actually quite the opposite: you get to learn about exciting new features and improvements that can help you be more productive, improve the quality of your codebase and improve your application’s performance. And it really doesn’t take that long, if you do it frequently enough!