Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install specific node version

npm install -g npm@15.0.0
Comment

install specific node version linux


# step 1: specify node version (e.g: ~10.x)
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

# step 2: install 
sudo apt install nodejs

Comment

install specific version of node

nvm install v14.16.0 
Comment

install node specific version

// For Mac with brew
brew install node@xx.xx.x

// For npm 
npm install -g node@xx.xx.x
Comment

node install specific version

nvm install v10.15 //v10.15 is a version i want.
Comment

node install specific version

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
Comment

PREVIOUS NEXT
Code Example
Shell :: zsh: command not found: protoc mac 
Shell :: bash add new line to crontab 
Shell :: install docker centos 8 
Shell :: styled-components 
Shell :: task manager linux 
Shell :: odoo12 installation in ubuntu 16.04 
Shell :: compare local git branch with remote 
Shell :: check if a port is working 
Shell :: where is docker images stored windows wsl2 
Shell :: Terminal commands to push a file to Github 
Shell :: install plasma arch 
Shell :: node check installed modules 
Shell :: react natibe debugger 
Shell :: linux install docker 
Shell :: xargs multiple commands "mac" 
Shell :: kubectl get logs of deployment 
Shell :: change execution policy in powershell 
Shell :: how to install teamspeak server arch linux 
Shell :: How to create or add a user on linux 
Shell :: kubectl exec ls -lah 
Shell :: ${a,}: bad substitution 
Shell :: kali linux change keyboard layout 
Shell :: check gcc version 
Shell :: how to find ip adress of a web side kali linux 
Shell :: What command do you use to pull any changes from the master repository into your local repository? 
Shell :: npm install typeorm 
Shell :: linux bash command to clean up log files in /var/log 
Shell :: how to create a new file in kali linux 
Shell :: copy one branch to another git 
Shell :: localhost run 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =