Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

install node js lts ubuntu 18.04

// Enabling NodeSource Repository
// replace %V% with desired major version
curl -sL https://deb.nodesource.com/setup_%V%.x | sudo bash -
// Install using apt-get
sudo apt-get install -y nodejs
// check installed node version
node --version
Comment

ubuntu 18.04 nodejs insatll

$ curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
Comment

node 18 on ubuntu

curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
Comment

how to install node.js node: 18.3.0 on ubuntu

//Installing Node Using the Node Version Manager
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
source ~/.bashrc
nvm ls-remote
//Output
..
        v14.18.2   (Latest LTS: Fermium)
        v15.0.0
        v15.0.1
        v15.1.0
        v15.2.0
        v15.2.1 .....
nvm install v18.3.0
//output
v18.3.0
more info on ---> https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-18-04
Comment

PREVIOUS NEXT
Code Example
Javascript :: selectpicker append option 
Javascript :: How to get convert number to decimal - jquery 
Javascript :: jquery html select selected get text 
Javascript :: Use Recursion to Create a Countdown 
Javascript :: jquery check if attribute exists 
Javascript :: javascript get domain 
Javascript :: write html is jsx extension for vscode 
Javascript :: mui usetheme 
Javascript :: keydown jquery 
Javascript :: javascript convert string to number 
Javascript :: reactive localstorage in react 
Javascript :: unique values from array of objects 
Javascript :: react nginx returns 404 after reload 
Javascript :: how to hover the mouse on an element cypress mouseover 
Javascript :: angular 8 how to iterate json object in view 
Javascript :: query params vuejs 
Javascript :: javascript enable a button once an input text filled 
Javascript :: Set background image from local file in react 
Javascript :: FailedToParse: Password must be URL Encoded for mongodb: 
Javascript :: javascript on url anchor change event 
Javascript :: pass keyword in javascript 
Javascript :: react copy to clipboard 
Javascript :: discord js delete message after time 
Javascript :: how to refresh the page using react 
Javascript :: Jquery Scroll on div using anchor tag is not Working properly 
Javascript :: updatedAt 
Javascript :: npm youtube-react 
Javascript :: google map react iframe 
Javascript :: typeface in gatsby 
Javascript :: change font js 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =