Wednesday, July 3, 2024
HomeOperating SystemsWindowsHow to Install Node.js and NPM on Mac

How to Install Node.js and NPM on Mac

Introduction

Node.js is a popular back-end JavaScript runtime used for creating web servers and scalable network apps. The environment supports server-side scripting – producing dynamic content for web pages before they are served to the user.

NPM is a package manager for JavaScript and the default package manager for Node.js. As such, NPM is installed alongside Node.js as a recommended feature.

This tutorial will show you how to install Node.js and NPM on Mac using the Homebrew package manager.

How to Install Node.js and NPM on MacHow to Install Node.js and NPM on Mac

Prerequisites

  • Access to the terminal
  • Administrative level privileges

Note: Node.js has a PKG installer for macOS available on its website. However, installing with Homebrew is the recommended approach.

Install Homebrew

1. To install Homebrew on macOS, browse to Homebrew’s official website and copy the link displayed on the page.

Copying the install command for Homebrew on MacOSCopying the install command for Homebrew on MacOS

Note: Do not copy the command from the screenshot since it may change in the future. Always visit the website for the up-to-date command.

2. Open the terminal and paste the command. Type the sudo password when prompted. Lastly, confirm that you want to install Homebrew by pressing Return.

Installing Homebrew on MacOSInstalling Homebrew on MacOS

Install Node.js and NPM on Mac

Note: For other operating systems, refer to our tutorials on installing Node.js and NPM on Windows, Ubuntu, CentOS, and Debian.

1. Type the following command to install Node.js and NPM:

brew install node

Homebrew downloads and installs the dependencies.

Installing Node.js and NPM on MacOS using HomebrewInstalling Node.js and NPM on MacOS using Homebrew

2. When the installation finishes, confirm that you successfully installed Node.js by checking its version:

node -v

The system displays the Node.js version as the output of the command.

Checking the version of the Node.js installation on MacOSChecking the version of the Node.js installation on MacOS

3. Next, check the installed version of NPM by typing:

npm -v

The NPM version number is displayed.

Checking the version of the NPM installation on MacOS Checking the version of the NPM installation on MacOS

Update Node.js and NPM on Mac

1. Before you proceed with upgrading the Node.js installation, update Homebrew’s repositories by typing:

brew update
Updating Homebrew in MacOSUpdating Homebrew in MacOS

2. When the update completes, type the following command:

brew upgrade node

The output in the example shows that the newest version of Node.js is already installed on the system.

Upgrading the Node.js and NPM installation with Homebrew on MacOSUpgrading the Node.js and NPM installation with Homebrew on MacOS

Note: For additional details, check our article How to Update Node.js and NPM.

Uninstall Node.js and NPM on Mac

1. Uninstall both Node.js and NPM with the brew uninstall command:

brew uninstall node
Uninstalling the Node.js and NPM installation with Homebrew on MacOSUninstalling the Node.js and NPM installation with Homebrew on MacOS

2. Remove all the unused dependencies with:

brew autoremove
Removing the unused dependencies with Homebrew on MacOSRemoving the unused dependencies with Homebrew on MacOS

This command removes the packages that brew uninstall did not remove.

Conclusion

After reading this tutorial, you should know how to use Homebrew to install Node.js and NPM on macOS. If you wish to find out more about the MEAN stack, which features Node.js, read LAMP vs. MEAN: Which is Better?

Was this article helpful?
YesNo

Ted Musemwa
As a software developer I’m interested in the intersection of computational thinking and design thinking when solving human problems. As a professional I am guided by the principles of experiential learning; experience, reflect, conceptualise and experiment.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments