Answers for "check nodejs version linux"

1

install latest nodejs stable linux

curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install nodejs
npm install -g npm@latest
Posted by: Guest on April-11-2021
21

check node version

node --version  
//or
node -v

//v12.15.0
Posted by: Guest on July-03-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language