需要帮助来设置node.js

时间:2012-03-22 18:32:03

标签: node.js

我刚刚在我的Windows系统上安装了node.js v0.6.13的最新安装程序。现在我已经完成了我需要做的其他事情才能使这项工作。

我的nodejs驻留在我的Program Files(X86)文件夹中,我的js文件位于c:\ inetpub \ www \ root文件夹中,但是当我打开node.exe并尝试在wwwroot目录中运行js文件时什么也没做。然后我将js文件复制到nodejs文件夹中并尝试在控制台中运行js文件,我收到以下错误:

ReferenceError:未定义helloWorld

at repl:1:2
at REPLServer.eval (repl.js:80:21)
at Interface.<anonymous> (repl.js:182:12)
at Interface.emit (events.js:67:17)
at Interface._onLine (readline.js:162:10)
at Interface._line (readline.js:426:8)
at Interface._ttyWrite (readline.js:603:14)
at ReadStream.<anonymous> (readline.js:82:12)
at ReadStream.emit (events.js:88:20)
at ReadStream._emitKey (tty.js:327:10)

我是新手,所以对此不太了解,有人可以通过指示恢复这项工作。

谢谢!

1 个答案:

答案 0 :(得分:2)

根据该错误,您似乎正在尝试从REPL启动JS文件,如

node.exe
> hellowWorld

如果您的代码位于helloWorld.js,则应按照以下方式运行:

node.exe helloWorld.js