-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
42 lines (34 loc) · 1021 Bytes
/
app.js
File metadata and controls
42 lines (34 loc) · 1021 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
38
39
40
41
42
const express = require('express');
const morgan = require('morgan');
const mongoose = require('mongoose');
const blogRoutes = require('./routes/blogRoutes');
// express app
const app = express();
const PORT = process.env.PORT || 3000 ;
//connect to mongoDB
const dbURI = 'mongodb://localhost:27017/narikootam';
mongoose.connect(dbURI)
.then((result) => app.listen(PORT))
.then(() => console.log("Server listening on Port",PORT))
.catch((err) => console.log(err));
//register view engine
app.set('view engine', 'ejs');
//middleware and static files
app.use(express.static('public'));
app.use(express.urlencoded({ extended: true }));
app.use(morgan('dev'));
app.use((req, res, next) => {
res.locals.path = req.path;
next();
});
app.get('/', (req, res) => {
res.redirect('/blogs');
});
app.get('/about', (req, res) => {
res.render('about', {title: 'About'});
});
//blog routes
app.use('/blogs',blogRoutes);
app.use((req, res) => {
res.status(404).render('404',{title: '404'});
})