Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to tell if node.js is installed or not

Open a terminal window. Type:

node -v

This will display your nodejs version.

Navigate to where you saved your script and input:

node script.js

This will run your script.


open a terminal and enter

node -v

this will tell you the version of the nodejs installed, then run nodejs simple by entering

node

Prompt must be change. Enter following,

function testNode() {return "Node is working"}; testNode();

command line must prompt the following output if the installation was successful

'Node is working'

Please try this command node --version or node -v, either of which should return something like v4.4.5.


(This is for windows OS but concept can be applied to other OS)

Running command node -v will be able to confirm if it is installed, however it will not be able to confirm if it is NOT installed. (Executable may not be on your PATH)

Two ways you can check if it is actually installed:

  1. Check default install location C:\Program Files\nodejs\

or

  1. Go to System Settings -> Add or Remove Programs and filter by node, it should show you if you have it installed. For me, it shows as title:"Node.js" and description "Node.js Foundation", with no version specified. Install size is 52.6MB

If you don't have it installed, get it from here https://nodejs.org/en/download/


Check the node version by typing in your terminal

node -v

Check the npm version by typing

npm -v

If these commands give you the version numbers for node and npm you are good to go with NodeJs development


Time to test node

Create a Directory by running the command.

mkdir NodeJs

Change your directory to the NodeJs folder and create a file

touch index.js

Open your index.js either using vi or in your favorite text editor.

Type in

console.log('Welcome to NodesJs.') 

and save the file.

Navigate back to your saved file in the terminal and type

node index.js

If you see Welcome to NodesJs. you did a nice job and you are up with NodeJs.