install node in debian code example
Example 1: debian install node js
su -
apt install curl -y
curl -sL https://deb.nodesource.com/setup_14.x | bash -
apt install -y nodejs
Example 2: debian install npm
# Debian installing Node.JS and NPM package manager
sudo apt update
sudo apt install nodejs npm
Example 3: install node in linux from tar
# NodeJSexport NODEJS_HOME=/opt/node-v10.1.0-linux-x64/binexport PATH=$NODEJS_HOME:$PATH