NodeJS 应用程序未在 centos 上运行

NodeJS 应用程序未在 centos 上运行

我正在尝试运行以下简单的 nodejs 代码。当我[IP ADDRESS]:PORT在浏览器上打开时,经过长时间的加载后出现请求超时。

当我尝试运行代码时,node index.jsServer 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');

相关内容