-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
54 lines (46 loc) · 930 Bytes
/
index.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
const express = require("express");
const app = express();
const defaults = [
{
title: "7時に起床する",
priority: 3,
},
{
title: "学校に行く",
priority: 3,
},
{
title: "開発をする",
priority: 2,
},
{
title: "早めに就寝する",
priority: 1,
},
];
let todos = defaults;
app.use(express.json());
app.get("/", (req, res) => {
res.send("Hello World!");
});
app.get("/todos", (req, res) => {
res.json(todos);
});
app.post("/todos", (req, res) => {
const { title, priority } = req.body;
console.log("title", title);
console.log("priority", priority);
todos.push({
title: title,
priority: priority || 2,
});
res.status(201);
res.send("Success!");
});
app.delete("/todos", (req, res) => {
todos = defaults;
res.status(200).send("Clear");
});
app.listen(process.env.PORT || 8080, () => {
console.log(process.env.PORT || 8080);
});