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

maol-kill

v0.3.0

Published

Find and delete node_modules, .next, dist and other dev caches with an interactive TUI

Readme

maol-kill

Find and delete node_modules, .next, dist and other dev caches with an interactive TUI. Like npkill, but hunts every build artifact that eats your disk — grouped by project, monorepo-aware.

maol-kill ✔ /Users/you/projects  241 found · 21.0 GB releasable · 4.2 GB freed 🎉
❯    3.1 GB ▾    3d job-index-v2 (2)
     2.8 GB   ├ .next
   300.0 MB   └ node_modules
     2.1 GB ▾   12d morsis (3)
     1.4 GB   ├ apps/api/.wrangler
   600.0 MB   ├ apps/web/.next
    80.0 MB   └ node_modules
   540.1 MB ▸ 1277d old-experiment (1)

Usage

npx maol-kill                # scan the current directory
npx maol-kill ~/projects     # scan a specific directory

Sizes stream in live while the scan runs. Results are grouped by project — the nearest ancestor with a .git (so monorepo apps group under their repo) or package.json. Deleting a group header deletes every cache inside that project.

Deletion is permanent (rm -rf, no trash) and happens on a single keypress — deleted rows stay in place, struck through, so you keep your bearings.

Keys

| Key | Action | | --- | --- | | / j k | Move cursor | | space / backspace / delete | Delete selected target — or every target in the project when on a group header | | a (twice) | Delete everything in the list — the only key with a confirm, since it nukes every project at once | | enter / | Collapse / expand the project group | | g | Toggle view: grouped by project ⇄ flat list | | o | Open the project folder in Finder / file manager | | s | Toggle sort: size ⇄ path | | q / esc | Quit |

Options

--dir, -d      Directory to scan (default: current directory)
--targets, -t  Comma-separated dir names to hunt
--exclude      Comma-separated dir names to skip while scanning

Default targets: node_modules, .next, .turbo, .wrangler, dist, build, out, coverage, .cache, .nuxt, .output, .vercel, .parcel-cache, .vite.

Reading the output

  • days column — how long since the project (its package.json) was touched. Green means stale (>180 days): a safe kill.
  • dist/build/out can occasionally hold real source or deploy output; double-check before deleting.
  • Sizes are disk usage (via du), so they match what you actually get back.

Notes

  • Symlinks are never followed, so pnpm's store and circular links are safe.
  • .git directories are never scanned or listed.
  • Nested targets (a dist inside node_modules) are freed along with their parent.

License

MIT