Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

debian install node js

# Using NVM
sudo apt install curl
curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
nvm install node

# Using Node.js setup script
sudo apt install curl -y
curl -sL https://deb.nodesource.com/setup_16.x | sudo bash -
sudo apt install nodejs -y
# If NPM didn't get installed
sudo apt install npm -y
# For another node version use
curl -sL https://deb.nodesource.com/setup_<version>.x | sudo bash -
Comment

install nodejs debian 10

apt install nodejs npm -y&& npm -v && nodejs -v 
Comment

download nodejs debian linux

curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs
Comment

install nodejs on debian 10

curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash - sudo apt-get install -y nodejs
Comment

PREVIOUS NEXT
Code Example
Shell :: git cheat sheet 
Shell :: gem install version 
Shell :: create new docker image from existing 
Shell :: Curl default connect-timeout 
Shell :: command to stop a system service 
Shell :: pm2 status 
Shell :: react app deploy on github pages 
Shell :: show processor usage linux 
Shell :: install kazam screencaster ubuntu 
Shell :: ubuntu copy 
Shell :: how to delete last push github 
Shell :: conda command to install folium 
Shell :: install mongo ubuntu 20.04 
Shell :: unix terminal search inside file 
Shell :: android studio kvm is required to run this avd 
Shell :: git fatal bad revision cherry-pick 
Shell :: bash get environment variable 
Shell :: pm2 show command 
Shell :: /gi regex 
Shell :: linux bash clean up log files in /var/log 
Shell :: how to remove large file from github repo history 
Shell :: ubuntu 20.04 install repo 
Shell :: how to create alias in linux 
Shell :: ubuntu kill service 
Shell :: configure apache in ubuntu 
Shell :: mac see current path2 
Shell :: remi repo 
Shell :: angular cli interface generate 
Shell :: socket install 
Shell :: android uninstall application adb 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =