Site icon Mobile App Development Services

How to measure React app performance

Performance is the key aspect of high-quality software. While developing any software, one must know how to make it performant enough. In this blog, we will see how we can measure the React app performance through React Profiler. 

In React app development, we are mostly playing around on components. Components let you split the UI into independent, reusable pieces. You create a component and React renders it to DOM. 

BUT …. 

But the main problem here is to ensure that these components should not render unnecessarily, and the cost of rendering should be optimized enough. 

React Profiler 

The React profiler measures how often a component is rendered and what’s the cost of rendering. Its purpose is to help identify parts of an application that are slow so that we can work on optimizing them. 

Note

Profiling adds some additional overhead, so it is disabled in the production build

To opt into production profiling, React provides a special production build with profiling enabled. Read more about how to use this build at fb.me/react-profiling

Usage 

To profile the application, open React Dev tools, start recording an activity, render any components and stop the recording. 

Example  

As an example, on how to find performance measures of a component, I have created a basic App component, which has an input field and a Counter component. 

As I type in the input field the App component changes its state and re-rendered itself with the updated input value. Now let Profile this in React Dev tool and see how our components got ranked based on the rendering time. 

As you can see in the dev tool ranked view, it highlights the Counter component in yellow, this means we have some problem in this component, and we can optimize it. 

If you notice in the right side window, the Counter component re-render itself three times on every keystroke and takes a total time of 1.2ms on render. Although this component has nothing to do with the input value on the App component. 

In order to avoid this re-render, you can memorize your Counter component. I am not going to show you how to do that as it is not part of our topic right now. What I want to demonstrate here is how efficiently we can measure our app performance and bottlenecks through React Profiler. 

The Profiler is indeed useful but a bit cumbersome to perform an activity and record. There is another way to profile a component programmatically. That’s through React Profiler API.  

Using Profiler API is simple, you can do that in two steps. 

First, import Profiler from React in your file. 

import {Profiler} from “react” 

Secondly, wrap your component inside <Profiler />,  

The Profiler takes two properties. An id to uniquely identify the commit and onRender callback that describe what was rendered and the length of time it took, includes following 

Now reload the application and head over to the console. You will see the following timings.

As I type in the input field, on every keystroke the Counter component gets re-rendered taking an extra amount of time, so here you have to see what causes this re-render and how you can optimize it.

Conclusion:

React Profiler is a great tool to measure the performance cost of your application. It helps you identify the performance bottleneck in your application so that you can identify those and fix them during development.