npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-render-spy

v1.0.0

Published

Debug why React components re-render with actionable prop/state diff insights.

Downloads

6

Readme

react-render-spy

Render debugger for React components. It explains why a component re-rendered and gives practical optimization hints.

Features

  • Hook (useRenderSpy) to track prop/state-like values.
  • HOC (withRenderSpy) to instrument existing components quickly.
  • Diff categories: added, removed, changed.
  • Optimization hints for unstable function/object/array references.
  • Configurable output (collapse groups, hide values, include/exclude keys, etc.).

Install

npm install react-render-spy

Quick Start

import { useRenderSpy } from "react-render-spy";

function ProfileCard(props: { user: { id: string }; onSave: () => void; count: number }) {
  useRenderSpy("ProfileCard", props);
  return <div>{props.count}</div>;
}

Usage

1) Hook usage

import { useRenderSpy } from "react-render-spy";

function ProductCard(props: { item: any; onAdd: () => void; count: number }) {
  useRenderSpy("ProductCard", props, {
    logOnMount: false,
    includeValues: true,
    collapseGroup: true,
  });

  return <div>{props.count}</div>;
}

2) Track state + derived values

import { useMemo, useState } from "react";
import { useRenderSpy } from "react-render-spy";

function Example({ items }: { items: string[] }) {
  const [query, setQuery] = useState("");
  const filtered = useMemo(
    () => items.filter((item) => item.includes(query)),
    [items, query],
  );

  useRenderSpy("Example", { items, query, filtered }, { includeValues: false });

  return <input value={query} onChange={(e) => setQuery(e.target.value)} />;
}

3) HOC usage

import { withRenderSpy } from "react-render-spy";

const Button = ({ onClick, label }: { onClick: () => void; label: string }) => (
  <button onClick={onClick}>{label}</button>
);

export default withRenderSpy(Button, "Button", {
  includeValues: true,
  maxEntries: 10,
});

API

useRenderSpy(componentName, trackedValues, options?)

  • componentName: label shown in console.
  • trackedValues: object of values to diff between renders (props, state, derived values).
  • options:
    • enabled?: boolean - master on/off switch.
    • logOnMount?: boolean - include first render in logs.
    • includeValues?: boolean - include previous/next values in table.
    • collapseGroup?: boolean - use console.groupCollapsed.
    • maxEntries?: number - cap rows shown per render.
    • logUnchanged?: boolean - log when tracked values did not change.
    • includeKeys?: string[] - allowlist tracked keys.
    • excludeKeys?: string[] - denylist tracked keys.

withRenderSpy(Component, name?, options?)

Wraps a component and tracks incoming props automatically.

Output example

react-render-spy prints:

  • Component name + render count
  • Change type (added / removed / changed)
  • Whether the change is a reference change
  • A practical recommendation for likely optimization

Development

npm install
npm run build
npm run test:run

Release

See RELEASE.md for the complete publish checklist.

Notes

  • Designed for development diagnostics.
  • Keep object/function references stable (useMemo/useCallback) for best results.