DEV Community

Cover image for Top 10 Homebrew Tools You Didn't Know You Needed in 2020
Shijie Zhou
Shijie Zhou

Posted on • Updated on

Top 10 Homebrew Tools You Didn't Know You Needed in 2020

1. Wget

if you use Linux or Mac os, the wget is the best command-line tool to help you download any repo from GitHub.

https://www.gnu.org/software/wget/

brew install wget
Enter fullscreen mode Exit fullscreen mode

2. Imagemagick

Imagemagisk has many functionalities that can convert an image from one format to another format easily. And it can convert multiple threads very fast for the large image.

https://imagemagick.org/index.php

brew install imagemagick
Enter fullscreen mode Exit fullscreen mode

3. Zsh

Z shell can be a very beautiful shell for you to run any command you want. and it notices the git repo you have commit or not. It has a very attractive color highlight so it helps you to develop your projects without push your stuffs to git.

https://ohmyz.sh/

brew install zsh
Enter fullscreen mode Exit fullscreen mode

4. Speedtest-cli

As you read the name of this repo, it check the speed of the your internet connection, and there is more information to show the internet speed.

https://formulae.brew.sh/formula/speedtest-cli

brew install speedtest-cli
Enter fullscreen mode Exit fullscreen mode

5. Archey

If your team works together in the same office and the same network, what if you want to share the localhost:3000 to your team without him to run the app. Of course, archey provided the IP and information of your computer and it helps you guys to share apps across the same offices.

https://obihann.github.io/archey-osx/

brew install archey
Enter fullscreen mode Exit fullscreen mode

6. Htop

This is a command-line version of activity monitor, top provides very rich information about what you desire and a lot of useful information about the processes running on your computer. It is much easy to navigate and make a simple selection of the process.

https://hisham.hm/htop/

brew install htop
Enter fullscreen mode Exit fullscreen mode

7. Tree

With the default of mac os, it does not show the tree structure files in the folder. So if you want to check out the folder structure, a tree command will save your life very quickly.

http://mama.indstate.edu/users/ice/tree/

brew install tree
Enter fullscreen mode Exit fullscreen mode

8. Ant

Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of Java applications. Ant supplies a number of built-in tasks allowing to compile, assemble, test and run Java applications. - Apache Ant

https://ant.apache.org/

brew install ant
Enter fullscreen mode Exit fullscreen mode

9. NVM

NVM - Node version manager, for those developers who love to switch different nodes in the environment, an nvm command is very easy to help you switch the tools between different node versions. More about: nvm

https://formulae.brew.sh/formula/nvm

brew install nvm
Enter fullscreen mode Exit fullscreen mode

10. Cask

The cask is to bring its elegance, simplicity, and speed to the installation and management of GUI macOS applications.

https://formulae.brew.sh/cask/

brew install cask
Enter fullscreen mode Exit fullscreen mode

Latest comments (8)

Collapse
 
gerbosan profile image
Carlos A.

Some of those commands are available in Linux repositories:

  • wget
  • Imagemagick
  • zsh
  • speedtest-cli
  • htop
  • tree
  • ant

but it is not guaranteed those are the last versions.
Still, it's a nice list.

PS: can't remember equivalent to archey, but there's one. =)

Collapse
 
palle profile image
Palle

Instead of tree, I recommend lsd (ls-deluxe). It's a replacement for the builtin ls command and it also has a tree view.

Collapse
 
palle profile image
Palle

Looks like you have a typo in your brew install imagemagick command.

Collapse
 
shijiezhou profile image
Shijie Zhou • Edited

Nice catch, I had updated it.

Collapse
 
codenutt profile image
Jared

Oooooo thank you!

Collapse
 
saif_shines profile image
Saif

This is good.

Collapse
 
codenutt profile image
Jared

Cask + tree. Suuuper handy!

Collapse
 
shijiezhou profile image
Shijie Zhou

right