linux install nodejs and npm code example
Example 1: install node js ubuntu
sudo apt-get install curl
curl -sL https:
sudo apt-get install nodejs
# Check node version
node -v
# v13.9.0
# Also, check the npm version
npm -v
# 6.13.7
Example 2: linux install node
sudo apt install nodejs
Example 3: install latest nodejs stable linux
curl -sL https:
sudo apt-get install nodejs
npm install -g npm@latest
Example 4: node install ubuntu
# Through nodesource
curl -sL https:
sudo apt install nodejs
Example 5: linux install node
curl -sL https:
Example 6: install node on linux
# It's a good idea to use NVM (Node Version Manager) if you want to install
# Node.js on Linux because it allows you to install many versions of Node
# simultaneously and switch between them easily
# Navigate to desktop to avoid problems with permissions
cd ~/Desktop
# Download the nvm script, but please note that new versions of nvm are
# released as the time pass, so you should always check the following link:
# https:
# to get updated info
sudo apt install curl && curl -o- https:
# You need to check whether nvm has been added to the PATH or not
# So you should execute the command
nvm --version
# IF IT HASN'T BEEN ADDED TO THE PATH, THEN MAKE SURE TO EXECUTE 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"
# To install the latest version of node, use the command:
nvm install node
# You don't need to worry about npm installation as nvm automatically
# installs it alongside node
# Please visit nvm github repo for more info: https: