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 :: disable ubuntu firewall 
Shell :: apache disable autostart linux 
Shell :: upgrade scikit-learn version 
Shell :: restart php nginx mac 
Shell :: shutdown pc in 10 min run command 
Shell :: get git remote url 
Shell :: how to check linux distro from terminal 
Shell :: auth install laravel 8 
Shell :: git delete all tags local and remote 
Shell :: how to install yup 
Shell :: how to clear container in docker 
Shell :: get all wifi password by terminal linux 
Shell :: how to install react router dom with typescript 
Shell :: linux remove mysql server 
Shell :: uninstall nginx 
Shell :: ubuntu install htop 
Shell :: install vscode using apt 
Shell :: check ububtu version 
Shell :: install zsh-syntax-highlighting 
Shell :: how to get mac cpu temp 
Shell :: linux memory cache clear 
Shell :: how to stop oneko 
Shell :: how to set zsh as default 
Shell :: powershell get current user 
Shell :: ubuntu 20.04 bluetooth not turning on or working 
Shell :: how to speedtest on bash 
Shell :: restart network service kali 
Shell :: Error loading webview: Error: Could not register service workers: InvalidStateError: Failed to register a ServiceWorker: The document is in an invalid state 
Shell :: kill logstash 
Shell :: dconf editor ubuntu 20.04 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =