Closed
Description
When I deploy the hello world program on Windows server, and access it with Windows, it always lead 200+ms delay.
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337);
console.log('Server running at http://127.0.0.1:1337/');
I search the issue, it seems a typical issue to Windows.