-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
36 lines (28 loc) · 784 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
36
const express = require('express');
const hbs = require('hbs');
const fs = require('fs');
const app = express();
hbs.registerPartials(__dirname + '/views/partials');
hbs.registerHelper('getCurrentYear', () => {
return new Date().getFullYear();
});
app.set('view engine', 'hbs');
app.use(express.static(__dirname + '/public'));
app.use((req, res, next) => {
var now = new Date().toString();
fs.appendFile('server.log', `${now}: ${req.method} ${req.url}\n`, (err) => {
if(err) {
console.log('unable to write log');
}
});
next();
})
app.get('/', (req, res) => {
res.render('home', {
heading: 'Home Page',
pageTitle: 'Home Title'
});
});
app.listen(3000, () => {
console.log('listening on port 3000');
})