Node REPL throws SyntaxError: Unexpected identifier

Node REPL throws SyntaxError: Unexpected identifier

我是 node.js 的新手。在节点 REPL 中,一切正常。但是有些事情发生了变化。当我尝试执行一个文件时,它显示了这个...

D:\Projects-2015\uniqueva>node
/>node module.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 --version

我在 module.js..

中有以下代码
var http = require("http");

http.createServer(function(request, response){
    response.writeHead(200, {"Content-Type" : "text/plain"});
    response.write("Hello World");
    response.end();
}).listen(8888);

..但即使我只尝试 console.log 某些东西,或者只是将文件留空,这也是同样的问题..

您不能从节点 REPL 中调用节点可执行文件...只能 JavaScript statements/expressions.

尝试require('./module.js')

您是运行双击节点吗?

您必须从命令行 运行 节点并在命令行上给出命令节点 xyz.js。

node 应该在你的 class 路径中,或者在执行 node 时使用完整路径。例如 c:\work\nodetest\node .\xyz.js

在上面我将 js 文件复制到与节点文件相同的文件夹中。