Node.js version on the command line? (not the REPL)

后端 未结 13 1006
不思量自难忘°
不思量自难忘° 2020-12-07 08:01

I want to get the version of Node.js on the command line. I\'m expecting to run a command like:

node -version

but that doesn\'t work. Does

13条回答
  •  甜味超标
    2020-12-07 08:37

    You can simply do

    node --version
    

    or short form would also do

    node -v
    

    If above commands does not work, you have done something wrong in installation, reinstall the node.js and try.

提交回复
热议问题