Skip to content

Instantly share code, notes, and snippets.

@janez89
Created August 13, 2014 13:50
Show Gist options
  • Save janez89/e6be1939f475d03f5cd1 to your computer and use it in GitHub Desktop.
Save janez89/e6be1939f475d03f5cd1 to your computer and use it in GitHub Desktop.
NodeJS - favicon
var http = require('http');
http.createServer(function (req, res) {
// favicon spam
if (req.url == '/favicon.ico') {
res.writeHead(404);
return res.end();
}
// another response
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment