Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install nodejs 14 for ubuntu 20.04

sudo apt update
curl -sL https://deb.nodesource.com/setup_14.x | sudo bash -

cat /etc/apt/sources.list.d/nodesource.list
deb https://deb.nodesource.com/node_14.x focal main
deb-src https://deb.nodesource.com/node_14.x focal main

sudo apt -y install nodejs

node -v
v14.18.2
Comment

ubuntu 20 lts install node 10

# install nodejs 10.x version 
sudo apt update
cd ~
curl -sL https://deb.nodesource.com/setup_10.x -o nodesource_setup.sh
# not important, but can be done
nano nodesource_setup.sh
sudo bash nodesource_setup.sh
sudo apt install nodejs
node install npm -g
node --version
npm --version
Comment

how to install nodejs on ubuntu 20.04

Install Nodejs using NVM

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
source ~/.bashrc
nvm install v14.17.1
Comment

node js 16 install ubuntu 20.04

****Ubantu****
sudo apt-get install -y nodejs
Comment

install nodejs on ubuntu 20.04

nodejs install
Comment

PREVIOUS NEXT
Code Example
Shell :: IF NOT DIR BASH 
Shell :: linux tar command 
Shell :: how to disable password for ssh sudo users only 
Shell :: docker compose stop 
Shell :: git remote add local folder 
Shell :: search by commit message 
Shell :: heroku rebuild 
Shell :: restart wsl2 windows 10 
Shell :: git download specific commit 
Shell :: imagemagick add background to transparent png 
Shell :: install cocoapods mac 
Shell :: git update fork from original repo 
Shell :: command not found pipenv bash 
Shell :: speedtest cli mac 
Shell :: install psql 
Shell :: 7zip cmd 
Shell :: install adb 
Shell :: ubuntu 20.04 how to check dns server 
Shell :: git reflog 
Shell :: delete all local branches except current branch 
Shell :: how to refresh cache on github 
Shell :: whoami command 
Shell :: ords version view 
Shell :: vue router install 
Shell :: ubuntu disable ssh root 
Shell :: github change last commit message 
Shell :: expo install 
Shell :: upgrade docker compose windows 
Shell :: change global user name git 
Shell :: redwood open prisma studio 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =