当我尝试通过带有节点的终端运行javascript文件时,我得到“SyntaxError:unexpected identifier”
这是我的代码保存为example.js
console.log('hello world');
以下是我的终端发生的事情。
> Thoms-MacBook-Pro:desktop thomvaladez$ node
> console.log('hi');
hi
undefined
> node example.js
SyntaxError: Unexpected identifier
at Object.exports.createScript (vm.js:44:10)
at REPLServer.defaultEval (repl.js:117:23)
at bound (domain.js:254:14)
at REPLServer.runBound [as eval] (domain.js:267:12)
at REPLServer.<anonymous> (repl.js:279:12)
at REPLServer.emit (events.js:107:17)
at REPLServer.Interface._onLine (readline.js:214:10)
at REPLServer.Interface._line (readline.js:553:8)
at REPLServer.Interface._ttyWrite (readline.js:830:14)
at ReadStream.onkeypress (readline.js:109:10)
Node响应命令和代码,但我无法打开文件。有谁知道这个问题是什么?
答案 0 :(得分:5)
大多数人在节点会话本身之外运行该命令。
> Thoms-MacBook-Pro:desktop thomvaladez$ node example.js
如果您已经完成了节点会话,那么 - 正如t3dodson所建议的那样 - 您在那时做了一个要求。只有你需要在&#34; ./"之前加上它;这样它就能找到你的文件。
> Thoms-MacBook-Pro:desktop thomvaladez$ node
> require ('./example.js')
> Hello World!
我猜测&#34;节点&#34;然后在你的版本中是&#34;意外的标识符&#34;。