Answers for "whoere does nodejs install on linux"

13

linux install node

sudo apt install nodejs
Posted by: Guest on April-28-2020
1

install node on linux instance

#Install node version manager (nvm) by typing the following at the command line.

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

#Activate nvm by typing the following at the command line.

. ~/.nvm/nvm.sh

#Use nvm to install the latest version of Node.js by typing the following at the command line.
nvm install node
Posted by: Guest on October-03-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language