Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
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 195 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.