-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.js
68 lines (52 loc) · 1.35 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Global modules/packages
const bodyParser = require('body-parser');
const cors = require('cors');
const express = require('express');
const helmet = require('helmet');
const logger = require('morgan');
const { resolve } = require('path');
// Local modules
const { ENV } = require('./config');
const routes = require('./routes');
/**
* Create the Express server
*/
const app = express();
/**
* Pre-Route Middlewares
*/
app.use(helmet());
app.use(cors());
app.use((req, res, next) => {
res.header('Access-Control-Allow-Origin', '*');
res.header(
'Access-Control-Allow-Headers',
'Origin, X-Requested-With, Content-Type, Access, Authorization'
);
if (req.method === 'OPTIONS') {
res.header('Access-Control-Allow-Methods', 'GET, PUT, POST, PATCH, DELETE');
return res.status(200).end();
}
return next();
});
if (ENV !== 'production' && ENV !== 'testing') {
app.use(logger('dev'));
}
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
// Use Express static to serve static files from the client/public directory
app.use(
express.static(resolve(__dirname, 'client', 'public'), {
extensions: ['html', 'htm'],
})
);
/**
* Application Routes
*/
app.use(routes);
/**
* Post-route Middlewares
*/
// TODO: Implement error handling middleware
app.use((req, res, next) => next());
module.exports = app;