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

reactmonitorfiber

v1.0.11

Published

Visualize React's component tree performance and optimization suggestions

Readme

ReactMonitor

Quickly visualize React's component tree performance for improved onboarding and debugging

What does it do

By using the ReactMonitor Chrome DevTool, beginning and experienced developers alike are able to get a visual representation of an existing codebase that they are working on. Built with React, this tool will dynamically traverse the fiber root object behind the scenes, displaying state, props, render times and the type of components on the page.

readmeDemo

How to install and run

To be able to use the application, users can:

  • Download the 'ReactMonitor' Google Chrome extension from The Chrome Web Store
  • Run the NPM package in your own codebase by following these steps:
    • Install the package
      npm install reactmonitorfiber
    • Require/Import the package
      import reactMonitor from 'reactmonitorfiber'
      or
      const reactMonitor = require('reactmonitorfiber')
    • Invoke React Monitor with an input of the DOM element that you are rendering the React Element into
      const container = document.querySelector('#root');
      reactDOM.render(<App />, container);
      reactMonitor(container);
  • Navigate to the domain of your React application that you will be running React Monitor on
  • Open your Chrome Developer Tools and select React Monitor

    Placeholder for Screenshot/Gif

  • You are now able to view state changes on your application in real time!

Contributing

As an open-sourced project, ReactMonitor gladly accepts help whenever possible. If you have suggestions for improvements or run into any bugs, please feel free to open a github issue after checking whether no such issue has been filed yet. When you file a github issue, please include the following information:

Description

Steps to Reproduce
1.
2.
3.
Expected behavior:
Actual behavior:
Reproduces how often:
Versions: x.x
Additional Information:

Authors

Rudo Hengst: @RudoH
Lia Pham: @lpham598
Tommy Han: @simple-sifu

License

This project is licensed under the MIT License - see the LICENSE file for details