Brew Cleanup Utility
Go to file
cupcakearmy 1da1140eb3
version bump
2021-08-17 11:39:14 +02:00
.github funding 2020-05-26 10:35:32 +02:00
src mantainance 2021-08-17 11:37:09 +02:00
.gitignore typscript rewrite 2021-04-29 17:37:37 +02:00
LICENSE mantainance 2021-08-17 11:37:09 +02:00
README.md Update README.md 2021-08-17 11:27:06 +02:00
package-lock.json mantainance 2021-08-17 11:37:09 +02:00
package.json version bump 2021-08-17 11:39:14 +02:00
tsconfig.json mantainance 2021-08-17 11:37:09 +02:00

README.md

🍺 unbrew

NPM Version NPM Wekly Downloads Dependecies

The missing brew cleanup utility.

This is finally the easy way to clean your forgotten packages and dependencies.

Demo Video

📦 Installation

Single use

npx unbrew

Permanent install

npm -g install unbrew
# or
yarn global add unbrew
# Run
unbrew

☁️ Motivation

Well... anyone that has been using brew in macOS for some time will have encountered the issue of doing a simple brew list and discovering loads of packages they have never heard of. Often this is the result of installing some packages that bring dependecies, but since brew does not uninstall them when you delete the package they came with, they will hang around for ever basically.

🤷‍♀️ How does it work?

It's actually pretty simple:

  1. Check your leaves with brew leaves. This basically is a list of all the brew packages that are not required by another one. This means that only the packages you want to have installed + garbage will be a leave.
  2. You select which leaves are relevant to you, everything gets deleted over and over again until only your packages and their dependencies are left.
  3. We run also brew cleanup for good measure