-
Notifications
You must be signed in to change notification settings - Fork 10
/
app.js
48 lines (39 loc) · 1.3 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
const express = require('express');
const fs = require('fs');
const path = require('path');
const morgan = require('morgan');
const cookieParser = require('cookie-parser');
const bodyParser = require('body-parser');
const cors = require('cors');
const {sequelize} = require('./db_models');
const logger = require('./util/logger');
sequelize.authenticate()
.then(() => {
logger.log('Connection to DB established successfully');
}).catch(err => {
logger.error('Failed to establish connection with DB', err);
});
const index = require('./routes/index');
const contacts = require('./routes/contacts');
const app = express();
process.env.NODE_ENV === 'development' && app.use(morgan('dev'));
const accessLogStream = fs.createWriteStream(path.join(__dirname, 'app.log'), {flags: 'a'})
app.use(morgan('combined', {stream: accessLogStream}));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(cors());
app.use('/', index);
app.use('/contacts', contacts);
// catch 404 and forward to error handler
app.use((req, res, next) => {
let err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handler
app.use((err, req, res, next) => {
logger.error(err);
res.status(err.status || 500).json({message: err.message});
});
module.exports = app;