-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
37 lines (29 loc) · 756 Bytes
/
Copy pathserver.js
File metadata and controls
37 lines (29 loc) · 756 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
32
33
34
35
36
37
const express = require('express');
const hbs = require('hbs');
//const fs = require('fs');
const port = process.env.PORT || 3000;
var app = express();
hbs.registerPartials(__dirname + '/views/partials');
app.set('view engine', 'hbs');
app.use(express.static(__dirname + '/public'));
app.use((req, res, next) => {
var now = new Date().toString();
next();
});
hbs.registerHelper('getCurrentYear', () => {
return new Date().getFullYear();
});
hbs.registerHelper('screamIt', (text) => {
return text.toUpperCase();
});
app.get('/',(req, res) => {
//res.send('Hell Express');
});
app.get('/about',(req, res) => {
res.render('about.hbs',{
pageTitle: 'About Page'
});
});
app.listen(port, () => {
console.log(`Server is up on port ${port}`);
});