This tutorial will help you set up your environment to help you get started with the Front End Technologies task.
Use the following commands to install Node.js on your Ubuntu:
sudo apt-get install curl curl --silent --location https://deb.nodesource.com/setup_5.x | sudo bash - sudo apt-get install nodejs
Double check that it’s been installed correctly:
node -v
It should return the version number.
Make sure to also have the newest NPM installed (that comes with Node.js):
sudo npm install npm -g
You are now all set up and ready to start your first Front End project.