-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
120 lines (72 loc) · 2.62 KB
/
server.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
* @Author: Chandan Kumar
* @Date: 2018-02-13 15:21:56
* @Last Modified by: ckumar2@hallmark.com
* @Last Modified time: 2018-02-14 12:06:13
*/
// Dheeraj Changes
const express = require('express');
const fs = require('fs')
//Chandan conflict
var app = express();
//##################################################################################################################
//Attaching listner to the port
app.listen(3000, () => {
console.log('Server start at 3000 port');
});
//##########################################################################################
//Sending response to browser
app.get('/error', (req, res) => {
var e = {
error: 'It Error'
}
res.send(e);
})
// app.get('/about', (req, res) => { //about
// res.send('About page');
// });
//##################################################################################################################
//use for public directory page to display html
app.use(express.static(__dirname + '/public'));
//##########################################################################################
//app.set('view engine', 'hbs'); // Seeting handle bar view
//##########################################################################################
app.get('/', (req, res) => { //Home---
res.render('home.hbs', {
page: 'Home page',
// currentDate: new Date().getFullYear() Date value can be pass by Partial handle bar
});
})
app.get('/about', (req, res) => { //about
// res.send('About page');
res.render('about.hbs', {
page: 'About page',
// currentDate: new Date().getFullYear()
});
});
//##################################################################################################################
//---Rendering partial .hbs file passing object
const hbs = require('hbs');
hbs.registerPartials(__dirname + '/views/partials'); //Register folder for handle bar
hbs.registerHelper('getCurrentYear', () => {
return new Date().getFullYear();
}) //Helper
//##################################################################################################################
//Logging functionality
//Middle ware
app.use((req, res, next) => {
var now = new Date().toString();
var log = `${now}: ${req.method} ${req.url}`;
console.log(log);
// fs.appendFile('server.log', log + '\n', (err) => {
// if (err) {
// console.log('unable to append server.log');
// }
// })
//Devlopment
next();
})
//Showing maintaince file
// app.use((req, res, next) => {
// res.render('maintenance.hbs');
// })