quetre/app.js
2022-04-17 17:54:23 +05:30

60 lines
2.1 KiB
JavaScript

////////////////////////////////////////////////////////
// IMPORTS
////////////////////////////////////////////////////////
import express from 'express';
import morgan from 'morgan';
import helmet from 'helmet';
import compression from 'compression';
import { fileURLToPath } from 'url';
import viewRouter from './routes/viewRoutes.js';
import apiRouter from './routes/apiRoutes.js';
import globalErrorHandler from './controllers/errorController.js';
import AppError from './utils/AppError.js';
////////////////////////////////////////////////////////
// CREATING AND CONFIGURING APP
////////////////////////////////////////////////////////
const app = express();
app.set('view engine', 'pug');
const pathToViews = fileURLToPath(new URL('./views/pug', import.meta.url));
app.set('views', pathToViews);
const pathToPublicDirectory = fileURLToPath(
new URL('./public', import.meta.url)
);
app.use(express.static(pathToPublicDirectory));
////////////////////////////////////////////////////////
// MIDDLEWARES
////////////////////////////////////////////////////////
app.use(compression()); // compressing responses
app.use(
helmet({
contentSecurityPolicy: {
directives: {
'img-src': ["'self'", '*.quoracdn.net'],
'script-src': ["'self'", 'cdn.jsdelivr.net'],
},
},
crossOriginEmbedderPolicy: false,
})
); // using sane headers on response
if (process.env.NODE_ENV === 'development') app.use(morgan('dev')); // for logging during development
app.use('/', viewRouter);
app.use('/api/v1/', apiRouter);
////////////////////////////////////////////////////////
// HANDLING ERRORS
////////////////////////////////////////////////////////
// for all other routes, throwing error
app.all('*', (req, res, next) => {
next(new AppError(`this route(${req.originalUrl}) doesn't exist`, 404));
});
app.use(globalErrorHandler);
////////////////////////////////////////////////////////
// EXPORTS
////////////////////////////////////////////////////////
export default app;