# react-framestats **Repository Path**: mirrors_dropbox/react-framestats ## Basic Information - **Project Name**: react-framestats - **Description**: Performance monitoring tool for React applications - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # React Frame Stats react-framestats is a performance monitoring tool for React applications. Drop a `PerfPanel` component into your application and it will measure the duration of each frame and display: - the number of dropped frames in the last five seconds and - the longest frame over the same period. In addition, if you call `recordRender(componentName: string, reason: string)` in your appropriate `shouldComponentUpdate`, the perf panel will display: - how many times the top components have been rendered, - and the six most recent rerenders. ``` import {PerfPanel, recordRender} from 'react-framestats'; ... render() { return ( ); } ```