我是node.js的新手,当我试图运行Hello world应用程序时,它显示错误。我创建了一个main.js文件并使用节点repl我调用$ node main.js.It导致错误
SyntaxError: Unexpected identifier
at Object.exports.createScript (vm.js:24:10)
at REPLServer.defaultEval (repl.js:221:25)
at bound (domain.js:280:14)
at REPLServer.runBound [as eval] (domain.js:293:12)
at REPLServer.<anonymous> (repl.js:412:12)
at emitOne (events.js:82:20)
at REPLServer.emit (events.js:169:7)
at REPLServer.Interface._onLine (readline.js:210:10)
at REPLServer.Interface._line (readline.js:549:8)
at REPLServer.Interface._ttyWrite (readline.js:826:14)
之后我尝试使用正常的命令提示符。我遍历到main.js并执行节点main.js然后显示输出。但是在示例中,JS是使用节点repl执行的。它完全令人困惑。如果我在repl中尝试$ node它也显示错误。请帮忙
答案 0 :(得分:3)
您需要在OS命令/ shell提示符下执行node main.js
,而不是节点repl。