3
我試圖關閉Node.js的主頁的這個簡單的演示服務器:node.js中沒有響應
var http = require('http');
http.createServer(function (req, res) {
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/');
我已經打開在其安全組的Amazon EC2(1337)的端口。
[[email protected] servers]# /usr/local/bin/node nodeexample.js
Server running at http://127.0.0.1:1337/
我沒有得到任何迴應,但典型的服務器沒有響應。請幫助這個菜鳥了 丹科
./node --version v0.8.9 – Drew
您如何將請求發送到服務器? – jrajav
chrome secure.mathpdq.com:1337 – Drew