I have the following simple http-server setup using node.js:
var http = require(\'http\');
var port = 12311
http.createServer(function (req, res) {
con
It's usually the request for the favicon.ico
. Even if you don't have one, it's requested as the norm defines a default file path if you don't set the relevant <link rel="shortcut icon"...
in the header.
The best ways to find about the requests are :
req.url