Zacle
Zacle

Reputation: 163

How to find nodejs version

I installed nodejs first with nvm but it didn't work as I expected. When I installed it with LTS version sudo yum -y install nodejs, it worked but I'm not able to find the version of node.

node -v
-bash: /root/.nvm/versions/node/v8.11.3/bin/node: No such file or directory

I tried to remove nvm but still getting the same message.

Upvotes: 7

Views: 23802

Answers (3)

Anu
Anu

Reputation: 193

Try following code ->

$ node -v

Upvotes: 1

Pransh Tiwari
Pransh Tiwari

Reputation: 4202

Use the traditional command

node --version

OR

node -v

If nodejs -v is working and above solutions not, refer this: symbolic-link-error

Upvotes: 6

Sreeram TP
Sreeram TP

Reputation: 11927

In the command line just type the following

node --version

or you can use this code

node -v

Upvotes: 0

Related Questions