How React Compiler Performs on Real Code

Rate this content
Bookmark

The most talked-about news in the React community this year is probably the React Compiler. Everyone is looking forward to being saved from the re-render plague and never having to write useCallback/useMemo again.


But are we truly there yet? Can the React Compiler actually achieve those things? Do we need to do anything other than turning it on and enjoying a re-render-free life? I ran it on a few real-world apps to find the answer. Want to see the results?


In this talk, we’ll take a look at what the React Compiler is, what problems it solves, and how it performs on simple code examples and real-world applications.

This talk has been presented at React Advanced 2024, check out the latest edition of this React Conference.

FAQ

Memoization in React involves using React.memo to wrap components. It checks if props have changed; if not, re-renders are stopped. For non-primitive values, useMemo and useCallback hooks are used to preserve references and prevent re-renders.

Nadia has spent the last few years investigating performance, re-renders, and React. She has written articles, made YouTube videos, and published a book on these topics.

Nadia found that React Compiler might not catch every re-render, especially with external libraries or complex legacy code. It may not handle cases where code isn't fine-tuned for memoization.

React Compiler does not transpile external libraries, so its effectiveness may vary depending on the library's compatibility with memoization.

React Compiler has a minimal impact on initial load performance and can significantly improve interaction performance by reducing unnecessary re-renders.

Nadia is a developer who has worked for a small startup and Atlassian on the product JIRA. She loves to travel and moved from Australia to Austria. Her hobbies include investigating how things work and writing about them.

React Compiler is a tool from the React team that aims to optimize re-renders by memoizing components, props, and dependencies of hooks by default. It plugs into the build system to improve performance by reducing unnecessary re-renders.

For most developers, enabling React Compiler may be sufficient, allowing them to forget about manual memoization. However, those needing to optimize every millisecond may still need to use manual memoization techniques.

In large or old projects, it is advisable to enable the compiler gradually, file by file, and conduct thorough testing to ensure compatibility and performance improvements.

Nadia starts with an idea, writes examples and articles, iteratively refines them, and discovers new insights during the process. She shares her findings through writing and presentations.

Nadia Makarevich
Nadia Makarevich
31 min
25 Oct, 2024

Comments

Sign in or register to post your comment.
  • GitNation resident
    Amazing presentation!
  • Joaquin Bueno
    Joaquin Bueno
    Great Talk! been following Nadia's content for a couple of months now, always good stuff!
  • Guadalupe Lazzo
    Guadalupe Lazzo
    Nadia explained really well and took the time to test it with real scenarios. Super valuable thank you!
Video Summary and Transcription
I'm Nadia, a developer experienced in performance, re-renders, and React. The React team released the React compiler, which eliminates the need for memoization. The compiler optimizes code by automatically memoizing components, props, and hook dependencies. It shows promise in managing changing references and improving performance. Real app testing and synthetic examples have been used to evaluate its effectiveness. The impact on initial load performance is minimal, but further investigation is needed for interactions performance. The React query library simplifies data fetching and caching. The compiler has limitations and may not catch every re-render, especially with external libraries. Enabling the compiler can improve performance but manual memorization is still necessary for optimal results. There are risks of overreliance and messy code, but the compiler can be used file by file or folder by folder with thorough testing. Practice makes incredible cats. Thank you, Nadia!

1. Introduction and Background

Short description:

I'm Nadia, a developer with experience in performance, re-renders, and React. I've investigated these topics and shared my findings through articles, videos, and a book. Recently, the React team released the React compiler, which eliminates the need for memoization. I've tested the compiler on synthetic examples and real apps to evaluate its performance. Now, I'm excited to share my insights.

Thank you for the intro. As mentioned, my name is Nadia. Let me start by quickly introducing myself and talking a little bit about myself. I've been a developer for a very long time now. I worked for a small startup at some point. I worked for Atlassian for a few years on a product that some of you probably know and probably love called JIRM. I'm a bit lazy and also I love to travel. So a few years ago, I moved from Australia to Austria just because it's easier to spell. I'm a little bit of a nerd and one of my nerdy hobbies is to investigate how things work and then write the results down. I spent the last few years investigating everything that I could about performance, about re-renders, and React. I wrote a bunch of articles on this topic, I did YouTube videos, I even published a book, half of which is dedicated to the topic of re-renders, memoization, and how to control them. And during those years I kept seeing visitors from the future probably who would kindly inform everyone around them that memoization is not needed anymore because of React forget, currently known as React compiler. This April, our timeline finally caught up with theirs. React team released the compiler to the public and of course I had to try it and see the future for myself. So I tried the compiler on a few synthetic examples, I ran it on a few real apps, measured how it performs and what it does. Of course, I wrote it down and now I am happy to share with you how the future really looks like. So this is what the talk is all about.

2. Problem and Solution

Short description:

The problem the compiler solves is the performance impact of cascading re-renders in React. One way to address this is through memoization, which can be achieved using the React memo and hooks like useMemo and useCallback. By preserving references to non-primitive values between re-renders, we can prevent unnecessary re-renders and improve performance.

What is the problem the compiler solves? Are there any downsides to it? How it performs on synthetic examples and how it performs on real life code?

Let's start with the problem. So what exactly are we trying to solve here? Here is our beautiful user interface, it's really nice. When some new information comes in there, we want to update it. To do this in React, we trigger what is known as a re-render. Re-renders in React are cascading, as you probably know. Every time a re-render of a component is triggered, it triggers a re-render of every component inside and then every component inside this component until the end of the tree is reached. If those downstream re-renders affect some really heavy component, our app becomes slow. So that might cause performance problems.

To fix this, we need to stop this chain of re-renders from happening. One way to do it in React is to tell this component that it doesn't change and it can skip re-renders and re-render of every component inside. And of course, as always in React, there are multiple ways to do it, but one of them is memoization. Memoization starts with the React memo, a file or the component given to us by the React team. It wraps our original component and then renders itself on its place. Now, when the React reaches this component in the tree, it will stop and check whether its props have changed. If none of the props changed, then re-renders will be stopped. If even one of the props changes, React will continue with the re-renders as if no memoization happened. That means that for the memo to work properly, we need to make sure that every single prop on this component is exactly the same between the re-renders, otherwise, it just will not work.

For primitive values, it's easy. We don't need to do anything other than not changing them. For objects, arrays, and functions, however, they need some help. React uses referential equality to check for anything between re-renders. And if we declare those non-primitive values inside the component like I did here, they will be recreated on every re-render. Reference to them will change and memoization won't work. To fix this, we have two hooks, useMemo and useCallback. We will drop arrays and objects into useMemo, functions into useCallback, and then those hooks will preserve a reference to the values between the re-renders. And next time a re-render here in the parent happens, the very slow component will not re-render. And the chain of re-renders will be stopped. That is enough of the theory for today, I promise. This is a very simplified explanation, but as you can see, it's actually already quite complicated.

QnA

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

A Guide to React Rendering Behavior
React Advanced 2022React Advanced 2022
25 min
A Guide to React Rendering Behavior
Top Content
This transcription provides a brief guide to React rendering behavior. It explains the process of rendering, comparing new and old elements, and the importance of pure rendering without side effects. It also covers topics such as batching and double rendering, optimizing rendering and using context and Redux in React. Overall, it offers valuable insights for developers looking to understand and optimize React rendering.
Speeding Up Your React App With Less JavaScript
React Summit 2023React Summit 2023
32 min
Speeding Up Your React App With Less JavaScript
Top Content
Watch video: Speeding Up Your React App With Less JavaScript
Mishko, the creator of Angular and AngularJS, discusses the challenges of website performance and JavaScript hydration. He explains the differences between client-side and server-side rendering and introduces Quik as a solution for efficient component hydration. Mishko demonstrates examples of state management and intercommunication using Quik. He highlights the performance benefits of using Quik with React and emphasizes the importance of reducing JavaScript size for better performance. Finally, he mentions the use of QUIC in both MPA and SPA applications for improved startup performance.
React Concurrency, Explained
React Summit 2023React Summit 2023
23 min
React Concurrency, Explained
Top Content
Watch video: React Concurrency, Explained
React 18's concurrent rendering, specifically the useTransition hook, optimizes app performance by allowing non-urgent updates to be processed without freezing the UI. However, there are drawbacks such as longer processing time for non-urgent updates and increased CPU usage. The useTransition hook works similarly to throttling or bouncing, making it useful for addressing performance issues caused by multiple small components. Libraries like React Query may require the use of alternative APIs to handle urgent and non-urgent updates effectively.
The Future of Performance Tooling
JSNation 2022JSNation 2022
21 min
The Future of Performance Tooling
Top Content
Today's Talk discusses the future of performance tooling, focusing on user-centric, actionable, and contextual approaches. The introduction highlights Adi Osmani's expertise in performance tools and his passion for DevTools features. The Talk explores the integration of user flows into DevTools and Lighthouse, enabling performance measurement and optimization. It also showcases the import/export feature for user flows and the collaboration potential with Lighthouse. The Talk further delves into the use of flows with other tools like web page test and Cypress, offering cross-browser testing capabilities. The actionable aspect emphasizes the importance of metrics like Interaction to Next Paint and Total Blocking Time, as well as the improvements in Lighthouse and performance debugging tools. Lastly, the Talk emphasizes the iterative nature of performance improvement and the user-centric, actionable, and contextual future of performance tooling.
Optimizing HTML5 Games: 10 Years of Learnings
JS GameDev Summit 2022JS GameDev Summit 2022
33 min
Optimizing HTML5 Games: 10 Years of Learnings
Top Content
Watch video: Optimizing HTML5 Games: 10 Years of Learnings
PlayCanvas is an open-source game engine used by game developers worldwide. Optimization is crucial for HTML5 games, focusing on load times and frame rate. Texture and mesh optimization can significantly reduce download sizes. GLTF and GLB formats offer smaller file sizes and faster parsing times. Compressing game resources and using efficient file formats can improve load times. Framerate optimization and resolution scaling are important for better performance. Managing draw calls and using batching techniques can optimize performance. Browser DevTools, such as Chrome and Firefox, are useful for debugging and profiling. Detecting device performance and optimizing based on specific devices can improve game performance. Apple is making progress with WebGPU implementation. HTML5 games can be shipped to the App Store using Cordova.
Power Fixing React Performance Woes
React Advanced 2023React Advanced 2023
22 min
Power Fixing React Performance Woes
Top Content
Watch video: Power Fixing React Performance Woes
This Talk discusses various strategies to improve React performance, including lazy loading iframes, analyzing and optimizing bundles, fixing barrel exports and tree shaking, removing dead code, and caching expensive computations. The speaker shares their experience in identifying and addressing performance issues in a real-world application. They also highlight the importance of regularly auditing webpack and bundle analyzers, using tools like Knip to find unused code, and contributing improvements to open source libraries.

Workshops on related topic

React Performance Debugging Masterclass
React Summit 2023React Summit 2023
170 min
React Performance Debugging Masterclass
Top Content
Featured WorkshopFree
Ivan Akulov
Ivan Akulov
Ivan’s first attempts at performance debugging were chaotic. He would see a slow interaction, try a random optimization, see that it didn't help, and keep trying other optimizations until he found the right one (or gave up).
Back then, Ivan didn’t know how to use performance devtools well. He would do a recording in Chrome DevTools or React Profiler, poke around it, try clicking random things, and then close it in frustration a few minutes later. Now, Ivan knows exactly where and what to look for. And in this workshop, Ivan will teach you that too.
Here’s how this is going to work. We’ll take a slow app → debug it (using tools like Chrome DevTools, React Profiler, and why-did-you-render) → pinpoint the bottleneck → and then repeat, several times more. We won’t talk about the solutions (in 90% of the cases, it’s just the ol’ regular useMemo() or memo()). But we’ll talk about everything that comes before – and learn how to analyze any React performance problem, step by step.
(Note: This workshop is best suited for engineers who are already familiar with how useMemo() and memo() work – but want to get better at using the performance tools around React. Also, we’ll be covering interaction performance, not load speed, so you won’t hear a word about Lighthouse 🤐)
Building WebApps That Light Up the Internet with QwikCity
JSNation 2023JSNation 2023
170 min
Building WebApps That Light Up the Internet with QwikCity
Featured WorkshopFree
Miško Hevery
Miško Hevery
Building instant-on web applications at scale have been elusive. Real-world sites need tracking, analytics, and complex user interfaces and interactions. We always start with the best intentions but end up with a less-than-ideal site.
QwikCity is a new meta-framework that allows you to build large-scale applications with constant startup-up performance. We will look at how to build a QwikCity application and what makes it unique. The workshop will show you how to set up a QwikCitp project. How routing works with layout. The demo application will fetch data and present it to the user in an editable form. And finally, how one can use authentication. All of the basic parts for any large-scale applications.
Along the way, we will also look at what makes Qwik unique, and how resumability enables constant startup performance no matter the application complexity.
Next.js 13: Data Fetching Strategies
React Day Berlin 2022React Day Berlin 2022
53 min
Next.js 13: Data Fetching Strategies
Top Content
WorkshopFree
Alice De Mauro
Alice De Mauro
- Introduction- Prerequisites for the workshop- Fetching strategies: fundamentals- Fetching strategies – hands-on: fetch API, cache (static VS dynamic), revalidate, suspense (parallel data fetching)- Test your build and serve it on Vercel- Future: Server components VS Client components- Workshop easter egg (unrelated to the topic, calling out accessibility)- Wrapping up
React Performance Debugging
React Advanced 2023React Advanced 2023
148 min
React Performance Debugging
Workshop
Ivan Akulov
Ivan Akulov
Ivan’s first attempts at performance debugging were chaotic. He would see a slow interaction, try a random optimization, see that it didn't help, and keep trying other optimizations until he found the right one (or gave up).
Back then, Ivan didn’t know how to use performance devtools well. He would do a recording in Chrome DevTools or React Profiler, poke around it, try clicking random things, and then close it in frustration a few minutes later. Now, Ivan knows exactly where and what to look for. And in this workshop, Ivan will teach you that too.
Here’s how this is going to work. We’ll take a slow app → debug it (using tools like Chrome DevTools, React Profiler, and why-did-you-render) → pinpoint the bottleneck → and then repeat, several times more. We won’t talk about the solutions (in 90% of the cases, it’s just the ol’ regular useMemo() or memo()). But we’ll talk about everything that comes before – and learn how to analyze any React performance problem, step by step.
(Note: This workshop is best suited for engineers who are already familiar with how useMemo() and memo() work – but want to get better at using the performance tools around React. Also, we’ll be covering interaction performance, not load speed, so you won’t hear a word about Lighthouse 🤐)
High-performance Next.js
React Summit 2022React Summit 2022
50 min
High-performance Next.js
Workshop
Michele Riva
Michele Riva
Next.js is a compelling framework that makes many tasks effortless by providing many out-of-the-box solutions. But as soon as our app needs to scale, it is essential to maintain high performance without compromising maintenance and server costs. In this workshop, we will see how to analyze Next.js performances, resources usage, how to scale it, and how to make the right decisions while writing the application architecture.
Maximize App Performance by Optimizing Web Fonts
Vue.js London 2023Vue.js London 2023
49 min
Maximize App Performance by Optimizing Web Fonts
WorkshopFree
Lazar Nikolov
Lazar Nikolov
You've just landed on a web page and you try to click a certain element, but just before you do, an ad loads on top of it and you end up clicking that thing instead.
That…that’s a layout shift. Everyone, developers and users alike, know that layout shifts are bad. And the later they happen, the more disruptive they are to users. In this workshop we're going to look into how web fonts cause layout shifts and explore a few strategies of loading web fonts without causing big layout shifts.
Table of Contents:What’s CLS and how it’s calculated?How fonts can cause CLS?Font loading strategies for minimizing CLSRecap and conclusion