-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
41 lines (34 loc) · 1.17 KB
/
app.js
File metadata and controls
41 lines (34 loc) · 1.17 KB
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
const express = require('express');//Gain access to all of the express js tools
const bodyParser = require('body-parser'); //another way of organizing the requested data
const cookieParser = require('cookie-parser');
const app = express();
//Setups up the put view engine to render the pug template
app.use(bodyParser.urlencoded({extended: false}));
app.use(cookieParser());
app.use('/static',express.static('public'));
app.set('view engine', 'pug');
const mainRoutes = require('./routes');
const cardRoutes = require('./routes/cards');
app.use(mainRoutes);
app.use('/cards', cardRoutes);
app.use(express.static(__dirname + '/views'));
app.use((req, res, next) => {
const err = new Error('Not Found');
err.status = 404;
next(err);
});
app.use((err, req, res, next) => {
res.locals.error = err;
if (err.status >= 100 && err.status < 600)
res.status(err.status);
else
res.status(500);
res.render('error');
});
/**
* Directs the developer to the appropiate webpage along with
* the port that the page is listening to
*/
app.listen(3000, () => {
console.log('Application running on localhost:3000!, \n link: http://localhost:3000/')
});