Node.jsWebサイトのメインページから次のようなサンプルスクリプトを作成しました。
var http = require('http');
http.createServer(function (req, res) {
console.log("We are connected");
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/');
127.0.0.1:1337(クロム経由)に接続するたびに、「接続されています」という2つの応答が返される理由はありますか?