-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.js
More file actions
79 lines (62 loc) · 1.42 KB
/
api.js
File metadata and controls
79 lines (62 loc) · 1.42 KB
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
73
74
75
76
77
78
79
const express = require('express')
const app = express();
const bodyParser = require('body-parser');
const port = 3001;
let id = 3;
const pets = [
{
"name": 'spot',
"type": 'dog',
"breed": 'poodle',
"color": 'black',
"owner": 'chris tucker',
"id": 1,
},
{
name: 'coco',
type: 'dog',
breed: 'terrier',
color: 'brown',
owner: 'mani',
id: 2,
}
];
app.use(bodyParser.json())
app.get('/', (req, res) => res.send('Hello World!'));
app.get('/pets', (req, res) => {
res.json(pets);
});
app.get('/pets/:petId', (req, res) => {
const pet = pets.find(pet => pet.id === +req.params.petId)
if (!pet) {
console.error(`Pet ID ${req.params.petId} was not found`);
return res.status(404).send();
}
res.json(pet);
});
app.post('/pets', (req, res) => {
const pet = {
...req.body,
id: id++
};
pets.push(pet);
res.status(201).json(pet);
});
// add route to update pet
app.put('/pets/:petId', (req, res) => {
let pet = pets.find(pet => pet.id === +req.params.petId);
if (!pet) {
console.error(`Pet ID ${req.params.petId} was not found`);
return res.status(404).send();
}
// create new pet object
const newPet = {
...pet,
...req.body,
id: pet.id
};
pets[pet.id - 1] = newPet;
console.info(`Pet ID ${req.params.petId} was updated`);
res.json(pet);
});
app.listen(port, () => console.log(`Example app listening on port ${port}!`));