All Projects โ†’ voidcosmos โ†’ Npkill

voidcosmos / Npkill

Licence: mit
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.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Npkill

Pizza Cli
๐Ÿ• Order a pizza in a CLI app (just for fun!)
Stars: โœญ 58 (-98.91%)
Mutual labels:  cli, npm, tool
Npm Compare
Compare npm packages from your terminal
Stars: โœญ 55 (-98.97%)
Mutual labels:  cli, module, npm
Ferret
Declarative web scraping
Stars: โœญ 4,837 (-9.16%)
Mutual labels:  cli, hacktoberfest, tool
Circleci Cli
Use CircleCI from the command line
Stars: โœญ 297 (-94.42%)
Mutual labels:  cli, tool, developer-tools
Phpinsights
๐Ÿ”ฐ Instant PHP quality checks from your console
Stars: โœญ 4,442 (-16.58%)
Mutual labels:  cli, hacktoberfest, tool
Npm Try
๐Ÿš† Quickly try npm packages without writing boilerplate code.
Stars: โœญ 103 (-98.07%)
Mutual labels:  cli, npm, tool
Bat
A cat(1) clone with wings.
Stars: โœญ 30,833 (+479.02%)
Mutual labels:  cli, hacktoberfest, tool
Bundle Phobia Cli
๐Ÿ“ฆ Cli for the node BundlePhobia Service ๐Ÿ˜ฑ
Stars: โœญ 108 (-97.97%)
Mutual labels:  cli, hacktoberfest, npm
Fselect
Find files with SQL-like queries
Stars: โœญ 3,103 (-41.73%)
Mutual labels:  cli, hacktoberfest, tool
Release It
๐Ÿš€ Automate versioning and package publishing
Stars: โœญ 4,773 (-10.37%)
Mutual labels:  cli, npm, tool
Ava
Node.js test runner that lets you develop with confidence ๐Ÿš€
Stars: โœญ 19,458 (+265.41%)
Mutual labels:  cli, hacktoberfest
Mongo Seeding
The ultimate solution for populating your MongoDB database.
Stars: โœญ 375 (-92.96%)
Mutual labels:  cli, hacktoberfest
Hyperjson
A hyper-fast Python module for reading/writing JSON data using Rust's serde-json.
Stars: โœญ 374 (-92.98%)
Mutual labels:  hacktoberfest, module
Npx card
use npx anmol to connect with me
Stars: โœญ 377 (-92.92%)
Mutual labels:  cli, npm
Collision
๐Ÿ’ฅ Collision is a beautiful error reporting tool for command-line applications
Stars: โœญ 3,993 (-25.01%)
Mutual labels:  cli, hacktoberfest
Memento
Memento is a development-only tool that caches HTTP calls once they have been executed.
Stars: โœญ 380 (-92.86%)
Mutual labels:  cli, hacktoberfest
Isort
A Python utility / library to sort imports.
Stars: โœญ 4,377 (-17.8%)
Mutual labels:  cli, hacktoberfest
Cpx
A cli tool to watch and copy file globs.
Stars: โœญ 394 (-92.6%)
Mutual labels:  cli, npm
Eva
a calculator REPL, similar to bc(1)
Stars: โœญ 405 (-92.39%)
Mutual labels:  cli, hacktoberfest
Hukum
An NPM module that displays Github Action progress in the terminal and aims to improve your development experience by printing status in realtime.
Stars: โœญ 375 (-92.96%)
Mutual labels:  npm, developer-tools

npkill logo npkill logo scope

npm Donations Badge npm version NPM

Easily find and remove old and heavy node_modules folders โœจ

npkill demo gif

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

โœ”๏ธ 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.

โ˜๏ธ Installation

You don't really need to install it to use it! Simply use the following command:

$ npx npkill

Or if for some reason you really want to install it:

$ npm i -g npkill
# Unix users may need to run the command with sudo. Go carefully

๐Ÿ“‹ Usage

$ npx npkill
# or just npkill if installed globally

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. You can also use j and k to move between the results

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

Important! Some applications installed on the system need their node_modules directory to work and deleting them may break them. NPKILL will highlight them by displaying a โš ๏ธ to be careful.

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
-E, --exclude Exclude directories from search (directory list must be inside double quotes "", each directory separated by ',' ) Example: "ignore1, ignore2"
-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 Don't check for updates on startup
-s, --sort Sort results by: size or path [ beta ]
-t, --target Specify the name of the directories you want to search (by default, is node_modules)
-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
  • List directories named "dist" and show errors if any occur:
npkill --target dist -e
  • Displays the magenta color cursor... because I like magenta!
npkill --color magenta
  • List vendor directories in your projects directory, sort by size, and show size in gb:
npkill -d '~/more projects' -gb --sort size --target vendor
  • List node_modules in your projects directory, excluding the ones in progress and ignore-this directories:
npkill -d 'projects' --exclude "progress, ignore-this"
  • Automatically delete all node_modules that have sneaked into your backups:
# Disabled for security reasons (you can use it in version 0.2.4 at your risk)
npkill -d ~/backups/ --delete-all

๐Ÿ“Ÿ Set Up Locally

# -- First, clone the repository
git clone https://github.com/voidcosmos/npkill.git

# -- Navigate to the dir
cd npkill

# -- Install dependencies
npm install

# -- And run!
npm run start


# -- If you want to run it with some parameter, you will have to add "--" as in the following example:
npm run start -- -f -e

๐Ÿ”ฎ Roadmap

  • Release 0.1.0 !
  • Improve code
    • Improve performance
    • Improve performance even more!
  • Sort results by size and path
  • Allow the search for other types of directories (targets)
  • Reduce dependencies to be a more minimalist module
  • 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
  • Add log service
  • Periodic and automatic cleaning (?)

๐Ÿ› Known bugs ๐Ÿ›

  • Sometimes, CLI is blocked while folder is deleting.
  • Some terminals that do not use TTY (like git bash in windows) do not work.
  • Sorting, especially by routes, can slow down the terminal when there are many results at the same time.
  • Sometimes, size calculations are higher than they should be.
  • (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 :)

๐Ÿ’ž Contributing

If you want to contribute check the CONTRIBUTING.md

โ˜• Buy us a coffee

We have developed npkill in our free time, because we are passionate about the programming sector. Tomorrow we would like to dedicate ourselves to this, but first, we have a long way to go.

We will continue to do things anyway, but donations are one of the many ways to support what we do.

Open Collective donate button

Thanks!!

A huge thank you to our backers โค๏ธ


Crypto alternative

  • btc: 1ML2DihUoFTqhoQnrWy4WLxKbVYkUXpMAX
  • bch: 1HVpaicQL5jWKkbChgPf6cvkH8nyktVnVk
  • eth: 0x7668e86c8bdb52034606db5aa0d2d4d73a0d4259

๐Ÿ“œ License

MIT ยฉ Nya Garcรญa Gallardo and Juan Torres Gรณmez

๐Ÿฑ๐Ÿค


Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].