繁体   English   中英

节点(SyntaxError:意外标识符)js终端中的文件

[英]Node (SyntaxError: unexpected identifier ) js files in terminal

当我尝试通过终端与节点运行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响应命令和代码,但我无法打开文件。 有谁知道这个问题是什么?

大多数人在节点会话之外运行该命令。

> Thoms-MacBook-Pro:desktop thomvaladez$ node example.js

如果你已经在你已经完成的节点会话中 - 正如t3dodson建议的那样 - 你在那时做了一个要求。 只需要在“./”前加上它,以便找到你的文件。

> Thoms-MacBook-Pro:desktop thomvaladez$ node
> require ('./example.js')
> Hello World!

我猜你的版本中的“节点”是“意外的标识符”。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM