-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
52 lines (40 loc) · 1.1 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
const express = require('express')
const ejs = require("ejs");
const bodyParser = require('body-parser')
const _ = require('lodash')
const app = express()
app.use(bodyParser.urlencoded({ extended: true }))
app.set('view engine', 'ejs')
app.use(express.static("public"))
const posts = []
app.get('/', (req, res) => {
res.render('home', { posts: posts })
})
app.get('/compose', (req, res) => {
res.render('compose')
})
app.post(('/compose'), (req, res) => {
const postTitle = req.body.title
const postContent = req.body.content
const post = {
title: postTitle,
content: postContent
}
posts.push(post)
res.redirect('/')
})
app.get('/posts/:postTitle', (req, res) => {
const requestTitle = _.lowerCase(req.params.postTitle)
posts.forEach((post) => {
const storedtitle = _.lowerCase(post.title)
if (requestTitle === storedtitle) {
res.render('post', {
title: post.title,
content: post.content
})
}
})
})
app.listen(3000, () => {
console.log('server is running on port 3000')
})