Installing NodeJS & NPM - KSU-CS-Software-Engineering/HSPC GitHub Wiki
Node.js and npm are necessary to run this project. Ensure the user account in use has sudo priveleges.
Run the following commands through the terminal to install nodejs and npm:
sudo apt update
sudo apt install nodejs npm
To verify the installation, use:
nodejs --version
Now, install npm using:
sudo apt install npm
To verify the installation, use:
npm --version
Nodejs and NPM should now be installed!