-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
64 lines (42 loc) · 1.33 KB
/
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
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
const $ = require("cheerio");
const rp = require("request-promise");
const session = require("express-session");
const express = require("express");
const app = express();
const expressLayouts = require("express-ejs-layouts");
const flash = require("connect-flash");
// EJS middleware
app.use(expressLayouts);
// we need to set ejs view engine
app.set("view engine", "ejs");
// body parser to read the data from front end
app.use(express.urlencoded({ extended: false }));
// using public folder files
app.use(express.static("public"));
// express session middleware
app.use(
session({
secret: "secret",
resave: true,
saveUninitialized: true
})
);
// using flash //middleware
app.use(flash());
// our own middleware to handle errors//global variables
app.use((req, res, next) => {
res.locals.success_msg = req.flash("success_msg");
res.locals.error_msg = req.flash("error_msg");
res.locals.error = req.flash("error");
next();
});
// Routes //
app.use("/", require("./routes/index"));
//catch 404 error and forward to error handler
app.use((req, res, next) => {
// res.status(404).send("oops that doesnt exist");
// console.log('res.status is: ' + res.status);
res.status(404).render("404");
});
const PORT = process.env.PORT || 5000;
app.listen(PORT, console.log(`server started and listening at ${PORT}`));