Popularity
5.4
Declining
Activity
0.0
Stable
827
16
25
Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Latest version: v0.2.2
react-render-visualizer alternatives and similar libraries
Based on the "Inspect" category.
Alternatively, view react-render-visualizer alternatives based on common mentions on social networks and blogs.
-
why-did-you-update
Puts your console on blast when React is making unnecessary updates. -
React Lifecycle Visualizer
Real-time visualizer for React lifecycle methods -
react-perf-tool
Debug performance of your React application.
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of react-render-visualizer or a related project?
README
React Render Visualizer
A visual way to see what is (re)rendering and why.
Features
- Shows when component is being mounted or updated by highlighting (red for mount, yellow for update)
- Shows render count for each component instance
- Shows individual render log for each component instance
Installation
npm install react-render-visualizer
Usage
This is a mixin so once you've included the source code, simply mix it in to any react component you want to start monitoring.
E.g.
var ReactRenderVisualizer = require("react-render-visualizer");
app.TodoItem = React.createClass({
mixins: [ReactRenderVisualizer],
Component will show up with a blue border box when being monitored