All Projects → amsul → React Performance

amsul / React Performance

Helpers to debug and record component render performance 🚀

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Performance

Hiper
🚀 A statistical analysis tool for performance testing
Stars: ✭ 2,667 (+906.42%)
Mutual labels:  performance
Handsontable
JavaScript data grid with a spreadsheet look & feel. Works with React, Angular, and Vue. Supported by the Handsontable team ⚡
Stars: ✭ 16,059 (+5960%)
Mutual labels:  performance
Metered Rs
Fast, ergonomic metrics for Rust
Stars: ✭ 258 (-2.64%)
Mutual labels:  performance
Models
Model Zoo for Intel® Architecture: contains Intel optimizations for running deep learning workloads on Intel® Xeon® Scalable processors
Stars: ✭ 248 (-6.42%)
Mutual labels:  performance
Yalla
YallaJS, ES6 Templating Engine.
Stars: ✭ 253 (-4.53%)
Mutual labels:  performance
Kboom
The Kubernetes scale & soak load tester
Stars: ✭ 256 (-3.4%)
Mutual labels:  performance
Autoptimize
Official Autoptimize repo on Github
Stars: ✭ 245 (-7.55%)
Mutual labels:  performance
Fixed
high performance fixed decimal place math library for Go
Stars: ✭ 263 (-0.75%)
Mutual labels:  performance
Inferno
🔥 An extremely fast, React-like JavaScript library for building modern user interfaces
Stars: ✭ 15,206 (+5638.11%)
Mutual labels:  performance
Query track
Find time-consuming database queries for ActiveRecord-based Rails Apps
Stars: ✭ 258 (-2.64%)
Mutual labels:  performance
Marathon
Cross-platform test runner written for Android and iOS projects
Stars: ✭ 250 (-5.66%)
Mutual labels:  performance
Api
Minimal, extremely fast, lightweight Ruby framework for HTTP APIs
Stars: ✭ 252 (-4.91%)
Mutual labels:  performance
Rz Go
Ripzap - Fast and 0 allocs leveled JSON logger for Go ⚡️. Dependency free.
Stars: ✭ 256 (-3.4%)
Mutual labels:  performance
Checklist
📋 A Frontend Checklist for Websites
Stars: ✭ 248 (-6.42%)
Mutual labels:  performance
Home
Project Glimpse: Node Edition - Spend less time debugging and more time developing.
Stars: ✭ 260 (-1.89%)
Mutual labels:  performance
Go Tooling Workshop
A workshop covering all the tools gophers use in their day to day life
Stars: ✭ 2,683 (+912.45%)
Mutual labels:  performance
Lazysizes
High performance and SEO friendly lazy loader for images (responsive and normal), iframes and more, that detects any visibility changes triggered through user interaction, CSS or JavaScript without configuration.
Stars: ✭ 15,716 (+5830.57%)
Mutual labels:  performance
Grav
Performance visualisation tools
Stars: ✭ 262 (-1.13%)
Mutual labels:  performance
Deepc
vendor independent deep learning library, compiler and inference framework microcomputers and micro-controllers
Stars: ✭ 260 (-1.89%)
Mutual labels:  performance
Poiji
🍬 A tiny library converting excel rows to a list of Java objects based on Apache POI
Stars: ✭ 255 (-3.77%)
Mutual labels:  performance

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].