You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of React 16, react-addons-perf is not supported. Please use your browser’s profiling tools to get insight into which components re-render.
For examples on how to use browsers profiler for performance testing check the React Docs
ReactPerfTool
ReactPerfTool tries to give you a more visual way of debugging performance of your React application.
It does this by using the addons delivered by the React team and community to get measurements and visualize this using graphs. This makes it easier to spot bottlenecks.
Usage
npm i react-perf-tool react-addons-perf -D
importReactPerfToolfrom'react-perf-tool';importPerffrom'react-addons-perf';// Import styles if they don't get loaded alreadyimport'react-perf-tool/lib/styles.css';exportdefaultfunctionYourApp(props){return(<divclassName="your-app">{/*...yourApp */}<ReactPerfToolperf={Perf}/></div>);}
Contributing
If you want to contribute just fork the project and start working on one of the open issues or on your own ideas.
When you are done you can open a pull request.