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

node-bloat-scanner

v1.0.0

Published

Scan node_modules and rank packages by bloat (size) - find which dependencies are taking up the most disk space

Readme

Node Bloat Scanner

A Node.js CLI tool that scans your node_modules directory and ranks packages by their size (bloat), helping you identify which dependencies are taking up the most disk space.

Features

  • 🔍 Scans all packages in node_modules (including scoped packages)
  • 📊 Ranks packages by disk size (largest = most bloated)
  • 📈 Shows file count, version, and formatted sizes
  • 💾 Optional JSON export for further analysis
  • ⚡ Fast recursive directory scanning
  • 📦 Installable as npm package - use with npx

Installation

As npm package (Recommended)

# Run directly with npx (no installation needed)
npx node-bloat-scanner

# Or install globally
npm install -g node-bloat-scanner
node-bloat-scanner

Local Development

# Clone or download the repository
npm install

# Run locally
npm start
# or
node scanner.js

Usage

Basic Usage

# Scan node_modules in current directory
npx node-bloat-scanner

Options

# Limit number of results shown
npx node-bloat-scanner --limit 20
# or
npx node-bloat-scanner -l 20

# Export results to JSON
npx node-bloat-scanner --json
# or
npx node-bloat-scanner -j

# Scan a specific path
npx node-bloat-scanner /path/to/project

# Show help
npx node-bloat-scanner --help

Output Example

🔍 Scanning node_modules...

Found 245 items in node_modules

📊 Analyzing package sizes...

Processed: 245 packages...

✅ Scan complete!

====================================================================================================
📦 TOP 50 MOST BLOATED PACKAGES (by size)
====================================================================================================

Rank   Package Name            Size         Files     Version        
----------------------------------------------------------------------------------------------------
1      webpack                45.2 MB      1,234     5.88.0         
2      @types/node            12.5 MB      456       18.15.0        
3      typescript             8.3 MB       234       5.0.0          
...

====================================================================================================
📊 Summary:
   Total packages scanned: 245
   Total size: 156.7 MB
   Average package size: 639.2 KB
   Top 50 packages account for: 142.3 MB
====================================================================================================

How It Works

  1. Scans the node_modules directory recursively
  2. Calculates the total size of each package (excluding nested node_modules)
  3. Counts the number of files in each package
  4. Extracts package metadata from package.json (name, version, description)
  5. Ranks packages by size (largest first)
  6. Displays results in a formatted table

Notes

  • The script skips nested node_modules directories to avoid double-counting
  • Scoped packages (e.g., @types/node) are handled correctly
  • Permission errors are handled gracefully
  • The .bin directory is excluded from the scan

License

MIT