Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

215
Views
What actions are React's browser profiler dev tools actually measuring?

React's "render" performance can be broken up into three steps:

  1. recursively call render() methods (or hook-style functions), generating a virtual dom structure that will replace whatever is already there
  2. use "reconciliation" to compare this new virtual dom with the existing dom, and generate a list of dom modifications that it can batch together
  3. execute that dom modification list against the browser. This last step is the only "IO" in this process, calling out to the browser, forcing reflows / repaints etc

When you profile an action using the React Dev tools, you can see the number of ms a specific component took to "render".

What is that actually measuring?

Is it just 1.? Is it 1. and the amount of 2. and 3. that occurred because of that component?

If it's the latter, how do you work out what the split between them is? If it's the former (which I suspect to be true) how do you work out the true cost factoring in 2. and 3.?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!