Added more types.

This commit is contained in:
SamTV12345 2024-01-24 20:18:46 +01:00
parent 545c7c6060
commit 03e73053cb
16 changed files with 167 additions and 81 deletions

View file

@ -1,19 +0,0 @@
'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();
};