我试图从node.js开始。刚刚写了
console.log("Hello World");
在HelloWorld.js文件中并尝试运行
终端上的节点HelloWorld.js。我看到以下错误:
/Users/arkidmitra/Desktop/NodeJs/helloworld.js:1
��c
^
node.js:134
throw e; // process.nextTick error, or 'error' event on first tick
^
SyntaxError: Unexpected token ILLEGAL
at Module._compile (module.js:399:25)
at Object..js (module.js:410:10)
at Module.load (module.js:336:31)
at Function._load (module.js:297:12)
at Array.<anonymous> (module.js:423:10)
at EventEmitter._tickCallback (node.js:126:26)
我用简单的textedit写了它。我可以在文件中看到一些特殊字符。可能出现的问题是什么?如何解决?
答案 0 :(得分:2)
答案 1 :(得分:1)
删除文件并使用其他文本编辑器再次编写...