Installing NodeJs

Installing NodeJs

Instructor-svg Al-Mamun Sarkar
Mar 29 , 2021

You can install NodeJs for running JavaScript directly using the node command. NodeJs is an asynchronous event-driven JavaScript runtime, which is designed to build scalable network applications. Here we will just use it from running JavaScript. 

 

Installing NodeJs on Ubuntu:

sudo apt update
sudo apt install nodejs

Check Version:

nodejs -v
node -v

 

Installing NodeJs on Mac:

brew install node

 Check Version:

node -v

 

Download and Install from NodeJs official site.

  • Share On:
  • fb
  • twitter
  • pinterest
  • instagram