-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
79 lines (62 loc) · 1.54 KB
/
index.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
69
70
71
72
73
74
75
76
77
78
79
const dotenv = require('dotenv');
const express = require('express');
const cors = require('cors');
const errorhandler = require('errorhandler');
const mongoose = require('mongoose');
const cookieParser = require('cookie-parser');
dotenv.config();
var isProduction = process.env.NODE_ENV === 'production';
var app = express();
app.use(cors());
app.use(express.static(__dirname + '/public'));
if (!isProduction) {
app.use(errorhandler());
}
if (isProduction) {
mongoose.connect(process.env.MONGODB_URI);
} else {
mongoose.connect(
process.env.MONGODB_URI || 'mongodb://localhost/coding-plat'
);
mongoose.set('debug', true);
}
app.use(cookieParser());
app.use(express.json());
app.use(require('./routes'));
/// catch 404 and forward to error handler
app.use(function (req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
/// error handlers
// development error handler
// will print stacktrace
if (!isProduction) {
app.use(function (err, req, res, next) {
console.log(err.stack);
res.status(err.status || 500);
res.json({
errors: {
message: err.message,
error: err,
},
});
});
}
// production error handler
// no stacktraces leaked to user
app.use(function (err, req, res, next) {
res.status(err.status || 500);
res.json({
errors: {
message: err.message,
error: {},
},
});
});
app.set('token-whitelist', new Set());
// finally, let's start our server...
var server = app.listen(process.env.PORT || 3000, function () {
console.log('Listening on port ' + server.address().port);
});