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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@run1t/npkill

v2.0.0

Published

This tool allows you to list any node_modules directories in your system, as well as the space they take up. You can then select which ones you want to erase to free up space.

Downloads

5

Readme

Easily find and remove old and heavy node_modules folders :sparkles:

This tool allows you to list any node_modules directories in your system, as well as the space they take up. You can then select which ones you want to erase to free up space. Yay!

Table of Contents

:heavy_check_mark: Features

  • Clear space: Get rid of old and dusty node_modules cluttering up your machine.

  • Very fast: NPKILL is written in TypeScript, but searches are performed at a low level, improving performance greatly.

  • Easy to use: Say goodbye to lengthy commands. Using npkill is as simple as reading a list of your node_modules, and pressing Del to get rid of them. Could it be any easier? ;)

  • Minified: It barely has any dependencies.

:cloud: Installation

$ npm i -g npkill

Unix users may need to run the command with sudo. Go carefully

:clipboard: Usage

$ npkill

By default, npkill will scan for node_modules starting at the path where npkill command is executed.

Move between the listed folders with , and use Space to delete the selected folder (v0.2.2 and below the key was Del).

To exit, Q or Ctrl + c if you're brave.

Options

| ARGUMENT | DESCRIPTION | | ---------------------- | ----------------------------------------------------------------------------------------- | | -c, --bg-color | Change row highlight color. (Available: blue, cyan, magenta, white, red and yellow) | | -d, --directory | Set the directory from which to begin searching. By default, starting-point is . | | -D, --delete-all | CURRENTLY DISABLED. Automatically delete all node_modules folders that are found. | | -e, --show-errors | Show error messages related to the search if any | | -f, --full | Start searching from the home of the user (example: "/home/user" in linux) | | -gb | Show folders in Gigabytes instead of Megabytes. | | -h, --help, ? | Show this help page and exit | | -nu, --no-check-update | Dont check for updates on startup. | | -v, --version | Show npkill version |

Warning: In future versions some commands may change

Examples

  • Search node_modules directories in your projects directory:
npkill -d ~/projects

# other alternative:
cd ~/projects
npkill
  • Delete all node_modules that have sneaked into your backups, and show errors if any occur:
npkill -d ~/backups/ -e

:crystal_ball: Roadmap

  • [x] Release 0.1.0 !
  • [x] Improve code
    • [x] Improve performance
    • [ ] Improve performance even more!
  • [ ] Sort results by size and path
  • [ ] Reduce dependencies to be a more minimalist module
  • [ ] Allow the search for other types of directories (targets)
  • [ ] Allow to filter by directories that have not been used in a period of time
  • [ ] Create option for displaying directories in tree format
  • [ ] Add some menus
  • [ ] Periodic and automatic cleaning (?)

:bug: Known bugs :bug:

  • Sometimes, CLI is blocked while folder is deleting.
  • Some terminals that do not use TTY (like git bash in windows) do not work.
  • (SOLVED) Performance issues when searching from high level directories (like / in linux).
  • (SOLVED) Sometimes text collapses when updating the cli.
  • (SOLVED) Analyzing the size of the directories takes longer than it should.

If you find any bugs, don't hesitate and open an issue :)

:revolving_hearts: Contributing

Available soon

:scroll: License

MIT © Nya García Gallardo and Juan Torres Gómez

:cat::baby_chick: