wastedrendersdetector
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

WastedRendersDetector

Small tool aiming to ease the debugging of wasted react renders.

Wasted react renders is when a react component updates but this does not result in actual DOM mutations. This is a common problem when using connect().

This tool should be used in debug builds only. It helps detecting the two following scenarios:

  • a component updates because some props changed but the old props and the new props are deep equal.
  • a component updates because some function props mutated, this happens if we create lambdas in render() or mapStateToProps.

Usage

import { debugOnlyWastedRenderDetector } from "wastedrendersdetector";
import { connect } from "react-redux";
 
const MyConnectedComponent = connect(mapStateToProps)(debugOnlyWastedRenderDetector(MyBaseComponent));

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Readme

Keywords

none

Package Sidebar

Install

npm i wastedrendersdetector

Weekly Downloads

5

Version

2.0.1

License

MIT

Unpacked Size

15.9 kB

Total Files

8

Last publish

Collaborators

  • vincentbailly
  • mtennoe
  • microsoft1es