New: Try Voli The Bear, Fast package manager (and not only) for Windows
Reference

Cheat Sheet

The commands you keep forgetting, with a one-line description and a real example you can copy - 629 across 38 tools. Pick a tool in the sidebar, or search across all of them.

Homebrew (brew)

The macOS (and Linux) package manager - install, upgrade, and tidy up.
CommandWhat it doesExample
brew installInstall a package.brew install jq
brew install --caskInstall a GUI app.brew install --cask visual-studio-code
brew searchFind a package by name.brew search postgres
brew updateRefresh Homebrew's package lists.brew update
brew upgradeUpgrade everything that's outdated.brew upgrade
brew upgrade <pkg>Upgrade one package.brew upgrade node
brew outdatedList packages with newer versions.brew outdated
brew listShow what's installed.brew list
brew infoDetails, caveats, and dependencies.brew info redis
brew uninstallRemove a package.brew uninstall wget
brew services startRun a package as a background service.brew services start postgresql@16
brew services listSee which services are running.brew services list
brew cleanupDelete old versions and free disk space.brew cleanup
brew doctorDiagnose a broken Homebrew setup.brew doctor
brew tapAdd a third-party package repository.brew tap hashicorp/tap
brew deps --treeSee what a package depends on.brew deps --tree ffmpeg
brew pinHold a package at its current version.brew pin node