Hi,
I just created a HTTP server using this code fro the documentation:
var sys = require("sys"),
http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.end("Hello World!");
sys.puts('Connection');
}).listen(8080);
sys.puts("Server running at http://localhost:8080/");**
My question is, why when I go to localhost:8080 I got "connection" printed twice? is this a bug?