JS文件不在终端中与Node.js一起运行

时间:2019-02-28 03:32:22

标签: javascript node.js

我正在尝试在命令提示符中使用node.js来运行js文件,但终端却在说而不是在运行该文件。

>hello.js:1
(function (exports, require, module, __filename, __dirname) { 
console.log(hello world)
                                                                      ^^^^^
SyntaxError: missing ) after argument list
at new Script (vm.js:79:7)
at createScript (vm.js:251:10)
at Object.runInThisContext (vm.js:303:10)
at Module._compile (internal/modules/cjs/loader.js:657:28)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:700:10)
at Module.load (internal/modules/cjs/loader.js:599:32)
at tryModuleLoad (internal/modules/cjs/loader.js:538:12)
at Function.Module._load (internal/modules/cjs/loader.js:530:3)
at Function.Module.runMain (internal/modules/cjs/loader.js:742:12)
at startup (internal/bootstrap/node.js:283:19)

新错误日志:

hello.js:1
(function (exports, require, module, __filename, __dirname) { 
console.log(hello world)
                                                                      ^^^^^

SyntaxError: missing ) after argument list
at new Script (vm.js:79:7)
at createScript (vm.js:251:10)
at Object.runInThisContext (vm.js:303:10)
at Module._compile (internal/modules/cjs/loader.js:657:28)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:700:10)
at Module.load (internal/modules/cjs/loader.js:599:32)
at tryModuleLoad (internal/modules/cjs/loader.js:538:12)
at Function.Module._load (internal/modules/cjs/loader.js:530:3)
at Function.Module.runMain (internal/modules/cjs/loader.js:742:12)
at startup (internal/bootstrap/node.js:283:19)

已解决:cd进入文件所在的文件夹,然后使用node打开js文件

2 个答案:

答案 0 :(得分:0)

在错误日志中注意到,hello world不是字符串,看起来像两个不同的变量。想想原来是'hello world'。 Node正在抱怨参数列表,因为代码被解释为像console.log(someVariableFoo, someVariableBar)这样的参数列表,因为helloworld之间有一个空格,并且文本没有用引号引起来。

JavaScript中的字符串如下:

const a = 'Hello World'; // single quote
const b = "Hello World"; // double quote 
const c = `Hello World`; // template literal
  

hello.js:1   (函数(导出,需求,模块,__ filename,__ dirname){   console.log(你好世界

有关通过MDN https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String进行的字符串的更多信息

答案 1 :(得分:0)

(function (exports, require, module, __filename, __dirname) { 
console.log("hello world");
}

在引号内添加世界字符串,并确保关闭花括号