test.js 317 B

1234567891011121314151617
  1. var http = require('http');
  2. var express = require('express');
  3. var app = express();
  4. var sub = express();
  5. app.use('/', function (req, res, next) {
  6. next(new Error('something broke'));
  7. });
  8. sub.use(function (err, req, res, next) {
  9. res.send('error handled');
  10. });
  11. app.use(sub);
  12. http.createServer(app).listen(4000);