Node JS安装 - ReferenceError:节点未定义问题

时间:2017-11-21 14:06:51

标签: node.js

最近,我在我的窗口64位系统中安装了nodejs,当我尝试使用命令node -v检查时,它应该显示它的版本但它显示错误

> node -v
ReferenceError: node is not defined
    at repl:1:1
    at ContextifyScript.Script.runInThisContext (vm.js:50:33)
    at REPLServer.defaultEval (repl.js:240:29)
    at bound (domain.js:301:14)
    at REPLServer.runBound [as eval] (domain.js:314:12)
    at REPLServer.onLine (repl.js:441:10)
    at emitOne (events.js:121:20)
    at REPLServer.emit (events.js:211:7)
    at REPLServer.Interface._onLine (readline.js:282:10)
    at REPLServer.Interface._line (readline.js:631:8)
>

我不明白原因。任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:1)

您在节点REPL 内。输入 process.exit(1),然后输入 node -v

答案 1 :(得分:0)

您可以通过两种方式检查版本,在bash shell或DOS shell中使用" node -v"它显示如下:

enter image description here

或使用process.version直接在节点shell中。你得到这个错误,因为你键入" node -v"在节点shell

enter image description here