-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
51 lines (41 loc) · 1.4 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
const path = require('path');
const express = require('express');
const bodyParser = require('body-parser');
var fs = require('fs');
const routes = require('./routes');
// Initialize express Server
const app = express();
// Middleware
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
// Add middleware. Because we defined the first parameter ( '/api' ), it will run
// only for urls that starts with '/api/*'
app.use('/api', require('./routes/api/middlewares/auth.js'));
// enable cross-origin resource sharing
// https://enable-cors.org/ and https://enable-cors.org/server_expressjs.html
app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
res.header("Access-Control-Allow-Methods", "GET, POST, DELETE");
next();
});
// Route to the api
app.use(routes);
// Route to health check
app.get('/healthz', function (req, res) {
// Docker purpose, return 200 if healthy, and anything else will fail!
res.send('I am happy and healthy\n');
});
// catch 404 and forward to error handler
app.use((req, res, next) => {
var err = new Error('Not Found!');
err.status = 404;
next(err);
});
// error handler
app.use((err, req, res, next) => {
// render the error page
res.status(err.status || 500);
res.json({ 'error': err.message });
});
module.exports = app;