React 16.5 Adds Programmatic Profiler
Written by Kay Ewbank   
Tuesday, 13 August 2019

There's a new release of React with improvements including an asynchronous testing utility, a programmatic profiler, and an updated roadmap.

React is Facebook’s open source JavaScript library, which lets you describe what you want to render in a declarative way using shared components and elements. The first improvement to React is a programmatic way to call the profiler.

reactlogo

The new profiler was added in React 16.5 for DevTools to give a way to find performance bottlenecks in your application. The new release adds a way to gather measurements programmatically. The developers say that while they expect that it won't be used by most smaller apps, but developers working on larger apps will find it a handy way to track performance regressions over time. The profiler measures how often a React application renders and what the “cost” of rendering is. Its purpose is to help identify parts of an application that are slow and may benefit from optimizations. The call to the profiler can be added anywhere in a React tree to measure the cost of rendering that part of the tree.

The second improvement is a new way to include asynchronous functions in tests for browser behavior. The previous release of React added an API called act() that can be used to create such tests, but it could only deal with synchronous functions, so failed if the state update was inside an asynchronous function. This has now been rectified.

The updated roadmap is the other main point of interest in this release. The previous roadmap from November 2018 suggested that by now there would be a release with support for Concurrent Mode, and another with Suspense for Data Fetching. The developers say these releases were too optimistic, and they now plan to group both improvements into a single release later this year.

 

reactlogo 

More Information

ReactJS Site

Related Articles

The Programmers Guide To React

React 16 Adds Fragments 

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

Banner


Bill Gates Shares The Code That Launched Microsoft
06/04/2025

To celebrate Microsoft's 50th Anniversary, Bill Gates has shared the original Altair BASIC Source Code. However it's not been open-sourced in a GitHub repo - instead it's available as a 157-page  [ ... ]



The Altair 8800 50 Years On
04/05/2025

The Altair 8800, the computer that brought computing into homes and small businesses was created by Ed Roberts in 1974 at a time when computers were the preserve of academia, the military and some big [ ... ]


More News

espbook

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Tuesday, 13 August 2019 )