-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
39 lines (31 loc) · 866 Bytes
/
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
const express = require("express")
const bodyParser = require("body-parser")
const ejs = require("ejs")
const app= express();
var items = []
app.set('view engine', 'ejs')
app.use(bodyParser.urlencoded({extended:true}));
app.use(express.static("public"))
app.get("/",function(req,res){
var today = new Date();
var options = {
weekday : "long",
day: "numeric",
month: "long"
};
var day = today.toLocaleDateString("en-US", options);
res.render("list",{kindofday: day, newListItems: items})
})
app.post("/", function(req,res){
var item = req.body.newItem;
if(item.length==0){
res.redirect("/")
}
else{
items.push(item);
res.redirect("/")
}
})
app.listen(3000,function(req,res){
console.log("server started...")
})