DEV Community

Cover image for How to Upgrade to React 18
Corbin Crutchley for CoderPad

Posted on • Originally published at coderpad.io

3 2

How to Upgrade to React 18

React 18 is the latest in a long line of major releases of React. With it you gain access to: new features for Suspense, new useId, useSyncExternalStore, and useDeferredValue hooks, as well as the new startTransition API.

While React 18 is not yet a stable release, testing out your application can be useful.

Like with previous major releases of React, React 18 is a fairly easy migration for most apps.

While Strict Mode has received some changes that may impact your app, and automatic batching may introduce some new edge cases, they only impact apps that don’t follow the Rules of React properly.

Outside of those considerations, let’s upgrade!

Installation

First, start by installing React 18:

npm i react@18.0.0 react-dom@18.0.0
Enter fullscreen mode Exit fullscreen mode

Or, if you use yarn:

yarn add react@18.0.0 react-dom@18.0.0
Enter fullscreen mode Exit fullscreen mode

If you’re using Create React App, you may also want to upgrade to the newest v5 as well using:

npm i react-scripts@5
Enter fullscreen mode Exit fullscreen mode

Or

yarn add react-scripts@5
Enter fullscreen mode Exit fullscreen mode

Then, make sure to upgrade any dependencies that might rely on React.

For example, upgrade React Redux to v8 or SWR to 1.1.0

Update render method

After you install React 18, you may receive an error when your app is running:

Warning: ReactDOM.render is no longer supported in React 18. Use createRoot instead. Until you switch to the new API, your app will behave as if it's running React 17. Learn more: https://reactjs.org/link/switch-to-createroot

This is because previously, in React 17 and before, you’d have a file - usually called index.js or index.ts - that included the following code:

const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);
Enter fullscreen mode Exit fullscreen mode

While this code will continue to function for this release, it will not allow you to leverage most of the new features of React 18. Further, it’ll be removed in a future release of React.

To fix this issue, replace this code with the following:

const rootElement = document.getElementById("root");
ReactDOM.createRoot(rootElement).render(
  <App />
);
Enter fullscreen mode Exit fullscreen mode

When finished, you should be able to verify the version of React you’re using with {React.version}

Try out the related code sample for getting React 18 up-and-running

Conclusion

As promised, the update to React 18 is fairly straightforward! Most applications should be able to upgrade without too many problems.

If you run into issues during your migration and you’re using StrictMode, try temporarily removing it to see if you run into any issues. React 18 introduced some changes that may impact some apps.

We hope you enjoy the new React concurrent features and happy hacking!

Sentry blog image

How to reduce TTFB

In the past few years in the web dev world, we’ve seen a significant push towards rendering our websites on the server. Doing so is better for SEO and performs better on low-powered devices, but one thing we had to sacrifice is TTFB.

In this article, we’ll see how we can identify what makes our TTFB high so we can fix it.

Read more

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay