-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
72 lines (62 loc) · 2.23 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// require dependencies so they can be used throughout this code
const express = require("express");
const bodyParser = require("body-parser");
const serveStatic = require("serve-static");
// initialize Express.js server and save as a variable
// so it can be referred to as `app`
const app = express();
app.use(bodyParser.json());
app.use(serveStatic("public"));
let todos = []; // In-memory storage for todos
// GET endpoint to fetch all todo items
app.get("/todos", (req, res) => {
res.json(todos);
});
// POST endpoint to create a new todo item
// provide `title` and optionally `completed` in the request body as JSON
app.post("/todos", (req, res) => {
const todo = {
id: todos.length + 1,
title: req.body.title,
completed: req.body.completed || false,
};
todos.push(todo);
res.status(201).json(todo);
});
// GET endpoint to get an existing todo item with the specified `id`
app.get("/todos/:id", (req, res) => {
const id = parseInt(req.params.id);
const todo = todos.find((t) => t.id === id);
if (!todo) {
return res.status(404).json({ error: "Todo not found" });
}
res.json(todo);
});
// PUT endpoint to update an existing todo item with the specified `id`
// provide updated `title` and/or `completed` in the request body as JSON
app.put("/todos/:id", (req, res) => {
const id = parseInt(req.params.id);
const todo = todos.find((t) => t.id === id);
if (!todo) {
return res.status(404).json({ error: "Todo not found" });
}
todo.title = req.body.title === undefined ? todo.title : req.body.title;
todo.completed = req.body.completed === undefined ? todo.completed : req.body.completed;
res.json(todo);
});
// DELETE endpoint to remove an existing todo item with the specified `id`
app.delete("/todos/:id", (req, res) => {
const id = parseInt(req.params.id);
const index = todos.findIndex((t) => t.id === id);
if (index === -1) {
return res.status(404).json({ error: "Todo not found" });
}
todos.splice(index, 1);
res.status(204).send();
});
// run the server on port 3000
// for example the app can run locally at this URL: http://localhost:3000
const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
console.log(`Server is running.\nOpen http://localhost:${PORT} in your browser.`);
});