Skip to content
This repository was archived by the owner on Oct 18, 2025. It is now read-only.

NodeJS Setup

Frank Matranga edited this page Sep 25, 2019 · 12 revisions

Installing NodeJS with NVM

Run the following command in your terminal (bash on WSL or just a terminal for Linux/MacOS):

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash

Once this installs you can now use nvm from the command line to install and use different versions of Node. Use it to install Node version 12:

nvm install 12

Verify you have Node v12 installed with

command -v node

This should print something like /home/frank-pc/.nvm/versions/node/v12.8.1/bin/node. If it doesn't print anything, it did not properly install. Please contact Frank.

Next Step

Clone this wiki locally