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 :: brew install jupyter 
Shell :: postgresql cli first time 
Shell :: install composer package from github 
Shell :: ubuntu install openjdk 8 source 
Shell :: prittier download ubuntu 
Shell :: turn redis off 
Shell :: increment in bash 
Shell :: ufw allow port from ip 
Shell :: git clone ssh key 
Shell :: How do I run multiple commands on one line in PowerShell? 
Shell :: install brew on mac 
Shell :: install brew on mac m1 
Shell :: How to check a service status with systemctl command 
Shell :: install brave browser in ubuntu 
Shell :: overall configuration gzip compression with nginx 
Shell :: run prometheus command 
Shell :: git log with branch tree 
Shell :: latest dart sdk version 
Shell :: yarn 2 upgrade all packages 
Shell :: list enviroment variables 
Shell :: prometheus reload 
Shell :: vadersentiment pip install 
Shell :: dash bootstrap import 
Shell :: leiningen install windows 
Shell :: shell script to reindex elasticsearch 
Shell :: start powershell as different user 
Shell :: how to copy file in root directory 
Shell :: phpcs standard xml 
Shell :: valet phpmyadmin 404 
Shell :: how to run mongodb shell 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =