我对 Node.js 很陌生,我在 Node.js 中运行一个简单的“hello world”程序时遇到了问题
程序1:
console.log("hello world");
程序2:
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(8124);
console.log('Server running at http://127.0.0.1:8124/');
运行这两个程序后,终端继续看起来是这样的:
>node hello.js
...