DEV Community

Ariel Mejia
Ariel Mejia

Posted on

 

Install Homebrew in MontereyOS

Short and to the point!

Install brew

In the terminal just type this command:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Enter fullscreen mode Exit fullscreen mode

Two additional commands

Sometimes the installation proccess requires to add two more commands, this is something that the brew installation command output returns, here mine:

echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/<your-machine-username>/.zprofile
Enter fullscreen mode Exit fullscreen mode
eval "$(/opt/homebrew/bin/brew shellenv)"
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.