Answers for "node.js install windows command line"

5

check npm version

npm -v
Posted by: Guest on April-26-2020
4

find node version

node -v

OR

node --version
Posted by: Guest on May-25-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
0

windows install node and npm

npm init to start a new project
nodejs.org/download to download node.js
Posted by: Guest on June-01-2021

Code answers related to "node.js install windows command line"

Code answers related to "Javascript"

Browse Popular Code Answers by Language