Skip to main content

Node.js

caution

This page is reserved for Linux users. Instructions for other operating system can be found in:

1. Open the terminal

Open terminal

2. Add Nodesource to your apt sources

curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -

3. Install Node.js

sudo apt-get install -y nodejs

4. Check that Node.js is installed

node --version

It should print:

v14.18.1

5. Check that npm is installed

npm --version

It should print:

6.14.15