
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
simple-react-render-tracker
Advanced tools
A powerful and lightweight tool for tracking and debugging React component renders. Monitor render counts, visualize render frequency with heatmaps, and get notifications for excessive renders.
A powerful and lightweight tool for tracking and debugging React component renders. Monitor render counts, visualize render frequency with heatmaps, and get notifications for excessive renders.
npm install simple-react-render-tracker
# or
yarn add simple-react-render-tracker
# or
pnpm add simple-react-render-tracker
import { TrackerProvider } from 'simple-react-render-tracker';
function App() {
return (
<TrackerProvider options={{ threshold: 10, showHeatmap: true }}>
<YourApp />
</TrackerProvider>
);
}
// Using the hook
import { useRenderTracker } from 'simple-react-render-tracker';
function MyComponent(props) {
useRenderTracker('MyComponent', props);
return <div>{props.content}</div>;
}
// Using the HOC
import { withRenderTracker } from 'simple-react-render-tracker';
function MyComponent(props) {
return <div>{props.content}</div>;
}
export default withRenderTracker(MyComponent);
import { RenderHeatmap } from 'simple-react-render-tracker';
function App() {
return (
<TrackerProvider options={{ showHeatmap: true }}>
<YourApp />
<RenderHeatmap />
</TrackerProvider>
);
}
Option | Type | Default | Description |
---|---|---|---|
threshold | number | 10 | Maximum renders before triggering a warning |
showHeatmap | boolean | false | Show/hide the render heatmap |
notify | function | console.warn | Custom notification handler |
const options = {
threshold: 15,
showHeatmap: true,
notify: (message) => toast.warning(message),
};
<TrackerProvider options={options}>
<App />
</TrackerProvider>
useRenderTracker(componentName: string, props: object)
A hook to track renders in functional components.
withRenderTracker(Component: React.ComponentType, componentName?: string)
A Higher-Order Component (HOC) to track renders in class or functional components.
A component that visualizes render frequency using a color-coded heatmap.
The context provider that manages render tracking state and configuration.
const showTracker = process.env.NODE_ENV === 'development';
function App() {
if (!showTracker) return <YourApp />;
return (
<TrackerProvider>
<YourApp />
</TrackerProvider>
);
}
const options = {
notify: (message) => {
// Send to error tracking service
errorTracker.log(message);
// Show in UI
toast.warning(message);
},
};
// Track only specific components
const needsTracking = ['Header', 'UserProfile', 'Dashboard'];
function MyComponent({ name, ...props }) {
if (needsTracking.includes(name)) {
useRenderTracker(name, props);
}
// ... rest of component
}
MIT © Mamadou Siradiou Diallo
FAQs
A powerful and lightweight tool for tracking and debugging React component renders. Monitor render counts, visualize render frequency with heatmaps, and get notifications for excessive renders.
The npm package simple-react-render-tracker receives a total of 6 weekly downloads. As such, simple-react-render-tracker popularity was classified as not popular.
We found that simple-react-render-tracker demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.