if (req.url === '/favicon.ico') {
res.writeHead(204); // 204 No Content
res.end();
return; // Stop further execution for this request
}
paste this code at staring.
the favicon request is due to default behavior of browser.