Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My node.js app is modeled like the express/examples/mvc app.

In a controller action I want to spit out a HTTP 400 status with a custom http message. By default the http status message is "Bad Request":

HTTP/1.1 400 Bad Request

But I want to send

HTTP/1.1 400 Current password does not match

I tried various ways but none of them set the http status message to my custom message.

My current solution controller function looks like that:

exports.check = function( req, res) {
  if( req.param( 'val')!=='testme') {
    res.writeHead( 400, 'Current password does not match', {'content-type' : 'text/plain'});
    res.end( 'Current value does not match');

    return;
  } 
  // ...
}

Everything works fine but ... it seems not the the right way to do it.

Is there any better way to set the http status message using express ?

share|improve this question
1  
Well, this seems to be the only workaround. But i wouldn't advice something like that, the HTTP 1.1 spec has it's error description standardized for some good reasons. I think it's bad practice to send well-known status-codes with custom descriptions, but that's up to you. – schaermu Jan 4 at 9:54
Hmmm - maybe thats true. On the other hand, I would assume browsers just check the status code and not the human readable http status message. I thought it is a good idea the use the http status message to transport a concrete (i.e. non default) error message if available. Plus that its easy to grab that using client side java script (using jQuery you can do "jqXHR.statusText" to get the error for display purposes) – lgersman Jan 4 at 10:03
1  
It's not about compatibility or potential browser issues, it's just bad practice ;) if you want an error message for display, send it as the body, that's the intended purpose. – schaermu Jan 4 at 10:37

2 Answers

You can check this res.send(400, 'Current password does not match') Look express docs for details

share|improve this answer
unfortunately this will not set the http status message but will send 'Current password does not match' as body content ... – lgersman Jan 4 at 15:22

One elegant way to handle custom errors like this in express is:

function errorHandler(err, req, res, next) {
  var code = err.code;
  var message = err.message;
  res.writeHead(code, message, {'content-type' : 'text/plain'});
  res.end(message);
}

(you can also use express' built-in express.errorHandler for this)

Then in your middleware, before your routes:

app.use(errorHandler);

Then where you want to create the error 'Current password does not match':

function checkPassword(req, res, next) {
  // check password, fails:
  var err = new Error('Current password does not match');
  err.code = 400;
  // forward control on to the next registered error handler:
  return next(err);
}
share|improve this answer
the second approach using function "checkPassword" will not do the same as you explained. instead it will send 'Current password does not match' as body content of the response. the http status message will already be "Bad request" – lgersman Jan 7 at 12:43

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.