我的he.js代码是这样的
var http = require('http');
var url = require('url');
http.createServer(function (req, res) {
// 获取 URL 路径并在控制台上打印
var pathname = url.parse(req.url).pathname;
console.log('Request for ' + pathname + ' received.');
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
在控制台上执行,然后就没有反应了,光标就停在那儿 浏览器也没有打开。
请问高手们,这是为什么呢?