Answers for "install node command line"

13

linux install node

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

install node js in manjaro

pacman -S nodejs npm
Posted by: Guest on December-04-2020
2

install node in nvm

// Ex:
nvm install v12.13.1
Posted by: Guest on April-22-2020
0

install node js command

# Make a new folder for node
mkdir node
cd node
# Download and unzip node
curl -O https://nodejs.org/dist/v10.15.3/node-v10.15.3-linux-x64.tar.gz
tar -xvzf node-v10.15.3-linux-x64.tar.gz --strip-components=1
# Add node and npm it to PATH (and do so for future sessions too)
export PATH=$HOME/node/bin:$PATH
echo 'export PATH=$HOME/node/bin:$PATH' >> ~/.bashrc
Posted by: Guest on April-20-2021

Code answers related to "install node command line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language