forked from dcat-demo/example-node
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapp.js
35 lines (29 loc) · 963 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
express = require('express');
app = express();
app.locals.moment = require('moment');
path = require('path');
bodyParser = require('body-parser');
timeController = require('./controllers/time');
homeController = require('./controllers/home');
app.use(express.static(__dirname + '/public'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
extended: true
}));
app.set('views', path.join(__dirname, 'views'));
app.get('/', homeController.index, timeController.getDate);
app.set('view engine', 'pug');
app.post('/catch', function(request, response){
var body = request.body;
console.log("Received: ", body);
response.sendStatus(200);
});
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
var server = app.listen(process.env.PORT || 3000, function (){
var port = server.address().port;
console.log('Magic is happening on port', port, " at ", timeController.getDate());
});