middleware.js 633 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * Module dependencies.
  3. */
  4. var utils = require('./utils');
  5. /**
  6. * Initialization middleware, exposing the
  7. * request and response to eachother, as well
  8. * as defaulting the X-Powered-By header field.
  9. *
  10. * @param {Function} app
  11. * @return {Function}
  12. * @api private
  13. */
  14. exports.init = function(app){
  15. return function expressInit(req, res, next){
  16. if (app.enabled('x-powered-by')) res.setHeader('X-Powered-By', 'Express');
  17. req.res = res;
  18. res.req = req;
  19. req.next = next;
  20. req.__proto__ = app.request;
  21. res.__proto__ = app.response;
  22. res.locals = res.locals || utils.locals(res);
  23. next();
  24. }
  25. };