Node.js is a JavaScript runtime environment that allows you to run JavaScript outside of your web browser. We will need this for some exercises in the upcoming lessons. To get started, there are some required tools we need before we can install Node on your system.
We’re going to install it using nvm
(Node Version Manager), because it makes it easy to change Node versions and upgrade Node. There is another tool called npm
(Node Package Manager) that you will use later to install the various libraries and tools used in JavaScript environments. It can be easy to confuse these two, so read carefully!
Node is also very easy to install using nvm, so this should go quickly :)
To install nvm properly, you’ll need curl
. Simply run the command below:
sudo apt install curl
nvm
Simply run this command:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
This will install nvm
nvm
In the terminal there should be some directions on how to initialize nvm
. If not, (or if you don’t feel like copying from the terminal), run these commands:
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
You can verify nvm
is installed by running the command:
command -v nvm
if this returns nvm: command not found
, close the terminal and re-open it.
On macOS 10.15 and above, the default shell is now zsh. During installation, nvm will look for a .zshrc
file in your user home directory. By default, this file does not exist so we need to create it.
To create the .zshrc
file and start the nvm installation, run the following commands:
touch ~/.zshrc
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
Restart your terminal, or copy and paste the following into your terminal and press enter:
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
Test your nvm installation by running:
nvm --version
For more information, view NVM’s github documentation.
Now that we have nvm
installed, we can install Node.
Run:
nvm install --lts
This will install the most recent stable version of Node in ‘long-term support’ (LTS), and you’ll see a lot of output in the terminal. If everything worked, you should see something similar to this somewhere in the lines of output:
Downloading and installing Node v16.xx.x...
If not, close the terminal, re-open it and run nvm install --lts
again.
We need to tell nvm
which version of Node to use when we run the node
command. It’s easy; just run the following command:
nvm use --lts
We have told nvm
to use the most recent LTS version of Node installed on our computer. You must use the LTS version of Node to avoid incompatibilities with packages we will be installing in future lessons. The LTS version of Node is simply a version that is guaranteed support for thirty months after its initial release. It is more stable and compatible with a variety of packages than a non-LTS version of Node.
Now when you run node -v
, you should see v16.xx.x
or something similar.
If you see that, you have successfully installed Node!
For convenience, Node provides an interactive console which lets you run and edit your javascript code right in your terminal, similar to IRB for ruby. This is quite helpful to debug or test small snippets of your code quickly without opening the browser every time.
To run the Node console, open up your terminal and type node
. Type .exit
to quit the console.
This section contains helpful links to related content. It isn’t required, so consider it supplemental.
5-6 months
Job Guarantee
1-on-1 Mentorship