Ghost/core/shared/express.js
Sam Lord 35e51e364b Switch to @tryghost/debug, remove ghost-ignition
no issue
The only pieces of Ghost-Ignition used in Ghost were debug and
logging. Both of these modules have been superceded by the Framework
monorepo, and all usages of Ignition have now been removed, replaced
with @tryghost/debug and @tryghost/logging.
2021-06-15 17:24:22 +01:00

37 lines
1.0 KiB
JavaScript

const debug = require('@tryghost/debug')('shared:express');
const express = require('express');
const sentry = require('./sentry');
module.exports = (name) => {
debug('new app start', name);
const app = express();
app.set('name', name);
// Make sure 'req.secure' is valid for proxied requests
// (X-Forwarded-Proto header will be checked, if present)
app.enable('trust proxy');
// Sentry must be our first error handler. Mounting it here means all custom error handlers will come after
app.use(sentry.errorHandler);
debug('new app end', name);
return app;
};
// Wrap the main express router call
// This is mostly an experiement, and can likely be removed soon
module.exports.Router = (name, options) => {
debug('new Router start', name);
const router = express.Router(options);
router.use(sentry.errorHandler);
debug('new Router end', name);
return router;
};
module.exports.static = express.static;
// Export the OG module for testing based on the internals
module.exports._express = express;