StackTips
 2 minutes

How to Install Node.js Mac OS X

By Nilanchala @nilan, On Sep 17, 2023 Blog Posts 2.24K Views

Before installing Node.js, just check if it is already installed in your machine. You can check by using node –version command. This will give you the current version of Node.js.
If it is not installed already, then you can use brew to easily install ant. Simply execute the following command in a terminal window to install brew

ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"

It may take a while to download and install. If you already have brew installed, make sure to update it by executing below command

brew update

Once brew is installed you can use below command to install Node.js

brew update
brew upgrade node
brew install node

Node should will be installed. Check if installed successfully

node --version
nilan avtar

Nilanchala

I'm a blogger, educator and a full stack developer. Mainly focused on Java, Spring and Micro-service architecture. I love to learn, code, make and break things.