我在ubuntu上安装了nodejs。
username@username-VirtualBox:~$ cd node
username@username-VirtualBox:~/node$ node app.js
如果我在我的代码中犯了错误,那么它会回复我的错误,但是当我的代码正在运行代码时,它并没有回应我。就像人们已经证明“在127.0.0.1230上运行”。
我如何才能使它发挥作用。
答案 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
将某些内容记录到控制台。