我正在尝试运行以下简单的 nodejs 代码。当我[IP ADDRESS]:PORT
在浏览器上打开时,经过长时间的加载后出现请求超时。
当我尝试运行代码时,node index.js
我Server ready
在命令行上得到响应,但浏览器上没有响应(请求超时)。
index.js 文件:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('Hello World!');
}).listen(8080);
console.log('Server ready');