-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathapp.js
51 lines (45 loc) · 1.21 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 express = require('express');
const routes = require('./routes');
const app = express();
const jsonParser = require('body-parser').json;
const logger = require('morgan');
const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost:27017/QA');
const db = mongoose.connection;
db.on('error', err => {
console.error(`Error while connecting to DB: ${err.message}`);
});
db.once('open', () => {
console.log('DB connected successfully!');
});
app.use((req, res, next) => {
res.header('Access-Control-Allow-Origin', '*');
res.header(
'Access-Control-Allow-Headers',
'Origin, X-Requested-With, Content-Type, Accept'
);
if (req.method === 'Options') {
res.header('Access-Control-Allow-Methods', 'PUT, POST, DELETE');
return res.status(200).json({});
}
});
app.use(logger('dev'));
app.use(jsonParser());
app.use('/questions', routes);
app.use((req, res, next) => {
const err = new Error('Not Found');
err.status = 404;
next(err);
});
app.use((err, req, res, next) => {
res.status(err.status || 500);
res.json({
error: {
message: err.message
}
});
});
const port = process.env.port || 3000;
app.listen(port, () => {
console.log(`Web server listening on: ${port}`);
});