react-performance icon indicating copy to clipboard operation
react-performance copied to clipboard

Helpers to debug and record component render performance 🚀

Results 5 react-performance issues
Sort by recently updated
recently updated
newest added

Would love to see the measure function as a decorator: ``` class MyComponent extends React.Component {/* ... */} export default ReactPerformance.measure({ getId: 'some_recognizable_identifier', Component: MyComponent, isCollapsed: false, }) ``` Would...

The docs say that `ReactPerformance.createNotifier()` returns a "middleware", but it actually creates a Redux _store enhancer_ instead, which is why it needs to be passed to `compose()` instead of passed...

Adding a `isMuted` option to the measuring parameters: its purpose is, basically, to not print any logs for that component is the option is set to `true`. The overall idea...

Basically, currently `isCollapsed` is not being used in every case: this means that when there's no change in the render it will still print not collapsed. In some scenarios where...

looking at the docs, it seems that react-performance is dependent on redux. Is this the case? Right now, I have a project that does not use any redux at all...