Code Monkey home page Code Monkey logo

react-performance's Introduction

React Performance ๐Ÿš€

Helpers to debug and record component render performance

With the release of React Fiber in v16, react-addons-perf has officially become obsolete. This project aims to be a "close enough" alternate solution.

Logs

Reports

Timing


Installation

  • Yarn: yarn add react-performance
  • npm: npm install react-performance

Usage

import ReactPerformance from 'react-performance'

You can also choose to import selectively:

import { measure, startRecording, printRecording } from 'react-performance'

NOTE: In a production environment, ReactPerformance disables itself.

Measure

To measure the rendering of a component, wrap it with the measure HOC:

class MyComponent extends React.Component {/* ... */}

export default ReactPerformance.measure({
  getId: 'some_recognizable_identifier',
  Component: MyComponent,
  isCollapsed: false,
})

That's it. Now logs will print every time the component renders.

If you use Redux, read the section below on how to Use with Redux.

Options:
  • getId is a string or function that helps you uniquely identify each component being rendered in the logs.
    • As a string, if it is a key of the component's props, the key and value are both used. Otherwise it is used as a static value.
    • As a function, it receives props and returns a string.
  • isCollapsed is true by default.
    • This collapses the duration & diff logs when a component renders.

Record

To generate reports, start recording data by running:

ReactPerformance.startRecording()

And then print out the report by running:

ReactPerformance.printRecording()

This prints out a report on all the components being measured.

Use with Redux

connect

Only "smart" components should be measured since those are typically the components that respond to state changes (and usually the only components that significantly impact performance).

With the assumption that any data passed down to components is encapsulated in a top-level state, the most appropriate way to use this with Redux is to use ReactPerformance.connect:

class MyComponent extends React.Component {/* ... */}

export default ReactPerformance.connect({
  mapStateToProps,
  mapDispatchToProps,
  getId: 'some_recognizable_identifier',
  Component: MyComponent,
})

This is equivalent to ReactPerformance.measure - except it also connects the component to the Redux store.

createStore

To get measurements on the full duration across all component renders triggered by dispatching actions, a middleware is provided to create the store:

const enhancer = redux.compose(
  // ...All other middleware first
  // This must be the last one!
  ReactPerformance.createNotifier(),
)
const store = redux.createStore(rootReducer, enhancer)

This will log measurements in batches of rerenders caused by updates to the store:



Contributing & Testing

PRs to improve this library are always welcome, but please make sure to test your changes locally before submitting, and to be consistent with the coding style.

To test your changes you have to do the following:

  1. run yarn develop in the root directory, to start a watch process that compiles lib to dist
  2. cd into the examples folder and run yarn && yarn start to start the react-create-app server

Now you can test your changes at http://localhost:3000/


ยฉ 2017 Amsul

Licensed under MIT

react-performance's People

Contributors

amsul avatar isitrita avatar kelset avatar tbroadley avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

react-performance's Issues

Docs incorrectly describe `createNotifier()` as a middleware

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 to applyMiddleware(). This should be fixed for clarity.

question: can I use react-performance with mobx?

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 (rxjs + mobx only),
and I'm wondering if I can use react-performance for it.

Thanks!

Create a @measure decorator

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 look good as

import {measure} from 'react-performance'

@measure({
  getId: 'some_recognizable_identifier',
  isCollapsed: false,
})
export default class MyComponent extends Component {/* ... */}

And with redux...

@measure({getId: 'some_recognizable_identifier'})
@connect(mapStateToProps, mapDispatchToProps)
class MyComponent extends React.Component {/* ... */}

This syntax would make react-performance easier to play around with because it would involve less changes to the code, ie you would only need to decorate components which would make it easier to add and remove profiling.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.