-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
44 lines (33 loc) · 847 Bytes
/
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
require('dotenv').config();
require('./config/firebaseConfig');
const createError = require('http-errors');
const express = require('express');
const logger = require('morgan');
const cors = require('cors');
const router = require('./routes/router');
const { connectDB } = require('./config/dbConfig');
const app = express();
connectDB();
app.use(
cors({
origin: process.env.CLIENT_URL,
}),
);
app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(router);
// catch 404 and forward to error handler
app.use((req, res, next) => {
next(createError(404));
});
// error handler
app.use((err, req, res, next) => {
res.status(err.status || 500);
if (res.statusCode !== 500) {
res.json({ message: err.message });
} else {
res.json({});
}
});
module.exports = app;