mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 17:06:16 -04:00
19 lines
536 B
JavaScript
19 lines
536 B
JavaScript
'use strict';
|
|
|
|
const stats = require('../../stats');
|
|
|
|
exports.expressCreateServer = (hook_name, args, cb) => {
|
|
exports.app = args.app;
|
|
|
|
// Handle errors
|
|
args.app.use((err, req, res, next) => {
|
|
// if an error occurs Connect will pass it down
|
|
// through these "error-handling" middleware
|
|
// allowing you to respond however you like
|
|
res.status(500).send({error: 'Sorry, something bad happened!'});
|
|
console.error(err.stack ? err.stack : err.toString());
|
|
stats.meter('http500').mark();
|
|
});
|
|
|
|
return cb();
|
|
};
|