Skip to content

Instantly share code, notes, and snippets.

@AaronCQL
Created August 7, 2020 02:39
Show Gist options
  • Save AaronCQL/124b083c406a822a03472eabadd7c7a2 to your computer and use it in GitHub Desktop.
Save AaronCQL/124b083c406a822a03472eabadd7c7a2 to your computer and use it in GitHub Desktop.
Use different versions of Node
# clean the cache
$ sudo npm cache clean -f

# install `n` package if not yet installed
$ sudo npm install -g n

# download and use latest stable version
$ sudo n stable
# download and use an arbitrary version
$ sudo n 6.0.0

# check node version
$ node -v

Note: terminal might have to be restarted for changes to take effect

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment