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

npm-i-progress

v1.0.2

Published

Run npm install with a real progress bar based on live fetch/extract events.

Downloads

5

Readme

npm-i-progress

Run npm install with a live progress bar based on real fetch/extract events from npm’s --verbose output.
No fake timers — the total grows as sub-dependencies are discovered.


✨ Features

  • Real-time progress while npm install runs
  • Single, continuous bar (no flicker on warnings)
  • Pass-through flags (--legacy-peer-deps, package names, etc.)
  • Works anywhere in your projects

🚀 Install

Global (recommended):

npm i -g npm-i-progress

One-off:

npx npm-i-progress

🧭 Usage

Inside any Node project directory:

npm-i-progress

Or use the short alias:

npi

Pass through any args you’d normally give npm install:

npm-i-progress --legacy-peer-deps
npm-i-progress react react-dom

🧰 How it works

This CLI spawns:

npm install --verbose

and parses lines that indicate fetch/resolve (to grow the total) and extract/install (to increment completed).
The bar updates continuously without resetting on warnings.

Note: npm doesn’t expose an official progress API.
This uses heuristic parsing and may vary slightly by npm version.
If your logs look different, please open an issue with a snippet.


📦 Requirements

  • Node.js 16+

🤔 FAQ

Does it replace npm install?
No. It wraps npm install and shows progress; it passes through args and exit codes.

Can I use it in CI?
Yes, but progress bars aren’t very useful in plain logs.
(A future update may auto-disable when CI=true.)

Why does total package count grow while running?
npm discovers sub-dependencies as it resolves the tree, so the total increases dynamically — that’s expected and more accurate than a fixed guess.


🧹 Uninstall

npm un -g npm-i-progress

🐞 Troubleshooting

  • Bar doesn’t move for a while: Some registries are slow; it should advance when extraction starts.
  • Weird npm output: Please paste a few lines of --verbose output in an issue; we’ll expand our matchers.
  • Windows PowerShell: If execution policy blocks global bins, run your terminal as Administrator or adjust policy.

📝 License

MIT © 2025 Mohammed Suhail Roushan Ali