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

npx-utils

v1.0.1

Published

Manages packages in the npx-space

Readme

npx-utils

npm version license GitHub Actions

Manages packages installed to the npx-space :space_invader:

What does that mean?

In npm@7 when using either npx or the new npm exec command, any package that is not found in the local node_modules folder or in your global node_modules folder, will be installed to a special npx space that lives inside npm internal cache folder.

npx-utils is a small cli tool that helps with managing things that are installed in this npx space by providing commands to list the folders in which packages are installed to and an interactive interface to remove them.

Install

You may install it globally:

$ npm i -g npx-utils

or simply run it using npx: npx npx-utils

Usage

If no argument is provided, the cli will display an interactive menu and print the directory of the selected item to the standard output.

List

Lists all folders currently in your npx space:

$ npx-utils ls

iRemove

Builds an interactive list of all folders currently in your npx space and moves the selected item to the OS system trash.

$ npx-utils irm

Remove

Allows you to remove a previously install to the npx space, there's a gotcha using this command, which is that you need to provide it the exact same items as passed to npx (or npm exec). For example if you used a specific version e.g: npx [email protected] you need to run npx npx-utils rm [email protected] in order to remove that previous install.

$ npx-utils rm <pkg>

More ideas

You can also combine the information provided by npx-utils with other tools in order to create even more useful workflows:

Uses npm ls to list packages installed to a specific space:

$ npm ls --all --prefix $(npx-utils)
? Select an item: semver@^7.3.4
a9bef924e4cb6cdb@ /Users/ruyadorno/.npm/_npx/a9bef924e4cb6cdb
└─┬ [email protected]
  └─┬ [email protected]
    └── [email protected]

Help

Usage:
  npx-utils [cmd]

Commands:
  default     Interactive list all pkgs, print path on selection
  help        Prints this help message
  list        List all pkgs installed in npx scope
  iremove     Interactive list all pkgs, removes it on selection
  remove      Removes a previously pkg (must use exact name + version)
  version     Prints the running version of npx-utils

License

MIT