Answers for "install node through command line"

13

linux install node

sudo apt install nodejs
Posted by: Guest on April-28-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 through command line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language