我创建了一个名为hello.js
的简单javascript文件,其代码为console.log('Node is installed!');
正如您在屏幕截图中看到的,我已经安装了node和npm。您可以在screenshot中看到该版本。我目前位于hello.json
文件所在的目录中。现在,当我在我的cygwin终端中输入node hello.json
时,它会给我以下错误module.js:674
throw err;
^
SyntaxError: C:\Users\SAHNN002\Documents\Testing\hello.json: Unexpected token c in JSON at position 0
at JSON.parse (<anonymous>)
at Object.Module._extensions..json (module.js:671:27)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
at Function.Module.runMain (module.js:693:10)
at startup (bootstrap_node.js:191:16)
at bootstrap_node.js:612:3
我对节点js几乎是新手。请帮我解决这个问题。