-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
90 lines (84 loc) · 1.58 KB
/
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
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
80
81
82
83
84
85
86
87
88
89
90
const express = require('express');
const app = express();
// Definimos puerto
const PORT = '3000';
const DB_MARCAS = [
{
'id': '1',
'nombre': 'Chevrolet',
},
{
'id': 2,
'nombre': 'Ford',
},
{
'id': 3,
'nombre': 'Toyota',
}
];
const DB_MODELOS = {
'chevrolet': [
{
'id': 1,
'nombre': 'Onix',
'year': 2020,
},
{
'id': 2,
'nombre': 'Corsa',
'year': 2020,
},
{
'id': 3,
'nombre': 'Joy',
'year': 2020,
},
],
'ford': [
{
'id': 4,
'nombre': 'Ka',
'year': 2020,
},
{
'id': 5,
'nombre': 'Fiesta',
'year': 2020,
},
{
'id': 6,
'nombre': 'Focus',
'year': 2020,
},
],
'toyota': [
{
'id': 7,
'nombre': 'Etios',
'year': 2020,
},
{
'id': 8,
'nombre': 'Hilux',
'year': 2020,
},
{
'id': 9,
'nombre': 'Corola',
'year': 2020,
},
]
}
app.get('/marcas', (req, res) => {
res.json(DB_MARCAS);
})
app.get('/marcas/:nombre_marca/modelos', (req, res) => {
const { nombre_marca } = req.params;
res.json(DB_MODELOS[nombre_marca.toLowerCase()]);
})
app.get('/', (req, res) => {
res.end('Hello world');
})
app.listen(PORT, () => {
console.log('Server listen in port ' + PORT);
});