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

后端 未结 13 937
不思量自难忘°
不思量自难忘° 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:58

    By default node package is nodejs, so use

    $ nodejs -v
    

    or

    $ nodejs --version 
    

    You can make a link using

    $ sudo ln -s /usr/bin/nodejs /usr/bin/node
    

    then u can use

    $ node --version
    

    or

    $ node -v
    
    0 讨论(0)
提交回复
热议问题