节点在ubuntu中没有响应?

时间:2012-06-09 20:02:02

标签: debugging node.js

我在ubuntu上安装了nodejs。

username@username-VirtualBox:~$ cd node
username@username-VirtualBox:~/node$ node app.js

如果我在我的代码中犯了错误,那么它会回复我的错误,但是当我的代码正在运行代码时,它并没有回应我。就像人们已经证明“在127.0.0.1230上运行”。

我如何才能使它发挥作用。

1 个答案:

答案 0 :(得分:0)

这是一个将显示running on 127.0.0.1230的app.js:

console.log( 'running on 127.0.0.1230' );

当你这样运行时:node app.js,你得到running on 127.0.0.1230

console.log将某些内容记录到控制台。