4Geeks logo
4Geeks logo
About us

Learning library

For all the self-taught geeks out there, here our content library with most of the learning materials we have produces throughout the years.

It makes sense to start learning by reading and watching videos about fundamentals and how things work.

Full-Stack Software Developer

Data Science and Machine Learning - 16 wks

Search from all Lessons

Social & live learning

The most efficient way to learn: Join a cohort with classmates just like you, live streams, impromptu coding sessions, live tutorials with real experts, and stay motivated.

← Back to How to's

Continue learning for free about:

Edit on Github

How to install node and nvm on a Mac osx (mojave)

Written by:

Alejandro Sanchez

There are several ways to install node on any mac, but my recommendation will be to install it using brew and nvm.
I think that is the best approach for several reasons:

  1. You will find that some times you want to switch between several versions of node depending on the libraries that you use, you dont want to be stuck in just one version.
  2. Brew is an amazing package manager for mac that contains very mature packages already bullet prove on any possible bugs.

Steps to install:

  1. Install brew (if you don't have it already)

According to the brew official website you only to paste need one command on the console:

1 $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  1. Install NVM using brew
1 $ brew install nvm
  1. Load it in the terminal
1$ mkdir -p ~/.nvm 2$ echo $'export NVM_DIR="$HOME/.nvm"\n. "/usr/local/opt/nvm/nvm.sh"' >> ~/.bash_profile
  1. Restart your current terminal
1$ source ~/.bash_profile
  1. Install node version 8 or whatever version you want
1$ nvm i 8

If you had any errors

Please file an issue here and we will do our best to help you. You can also contribute and PR any updates you think should be made to this guide..