rn-why-did-you-update

0.0.8 • Public • Published

Why did you update, bruh?

Travis npm version

Intro

This is a fork of Why did you update. The logging is optimized for usage with react-native by only using console.log and trying to minimize the amount of log calls.

What?

A function that monkey patches React and notifies you in the console when potentially unnecessary re-renders occur. Super helpful for easy perf gainzzzzz.

How to

import React from 'react'

if (process.env.NODE_ENV !== 'production') {
  const {whyDidYouUpdate} = require('why-did-you-update')
  whyDidYouUpdate(React)
}

You can include or exclude components by their displayName with the include and exclude options

whyDidYouUpdate(React, { include: /^pure/, exclude: /^Connect/ })

Credit

I originally read about how Benchling created a mixin to do this on a per component basis (A deep dive into React perf debugging). That is really awesome but also tedious AF, so why not just monkey patch React.

Readme

Keywords

Package Sidebar

Install

npm i rn-why-did-you-update

Weekly Downloads

0

Version

0.0.8

License

MIT

Last publish

Collaborators

  • freakinruben