-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
31 lines (26 loc) · 695 Bytes
/
app.js
File metadata and controls
31 lines (26 loc) · 695 Bytes
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
var express = require('express');
var path = require('path');
const bodyParser = require('body-parser');
var logger = require('morgan');
var app = express();
app.use(logger('dev'));
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json())
app.use('/', require('./slack'));
// catch 404 and forward to error handler
app.use(function(req, res, next) {
next({
code: 404,
message: 'Not Found'
});
});
// production error handler
// no stacktraces leaked to user
app.use(function(err, req, res, next) {
res.status(err.status || 500);
return res.json({
message: err.message,
error: err.code
});
});
module.exports = app;