Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

A little baffled at how to best handle 404 cases in my app. Here is a gist of a very basic example.

//******************************
// BUILD THE HTTP SERVER
//******************************
var express = require('express');
var app = express.createServer();

app.get('/login', function(req, res){
  console.log("hit the login");
  res.send('you hit the login');
});

app.get('*', function(req, res){
  console.log("got a 404");
  res.send('what???', 404);
});

app.listen(8081);
console.log('Server started on port: 8081');

If I fire up the server and hit the index of the server "/" I properly get the 404 message, HOWEVER, in the logs are 2 "got a 404" log entries on the console... odd.

So if I hit the "/login" page I do get the proper page, and corresponding message to the console, BUT, I ALSO get the 404 message to the console too?

Is this the expected behavior? I am using the latest 2.5.4 express on 4.11 but have tried it on other versions of node with the same results.

I dont really like the fact that my 404 route gets called on every single request, I must be doing something wrong.

share|improve this question

1 Answer

up vote 2 down vote accepted

This is probably due to fact that browser trying to get also favicon for your page.

Just use express.favicon() creating your server:

express.createServer(
  express.favicon()    
);

You may also want to use logger to discover thing like this, it's really useful middleware.

share|improve this answer
You are correct, that was the missing piece. – Anthony Webb Jan 12 '12 at 18:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.