First time using node.js - “ReferenceError: node is not defined”

后端 未结 7 1962
刺人心
刺人心 2021-02-01 02:47

I just installed node.js. I tried writing node -v that should check the version - and it\'s not working. this is the output:

 > node -v ReferenceError: node          


        
7条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-01 03:49

    Try opening up a new terminal (Run -> CMD) and then executing:

    node /your_file_name.js
    

    And to see which version you have installed, just execute:

    node -v
    

提交回复
热议问题