-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
38 lines (31 loc) · 901 Bytes
/
server.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
const express = require('express');
const axios = require('axios');
const cors = require('cors');
const moment = require('moment'); // Para manejar fechas fácilmente
const app = express();
const port = 3000;
// Middleware
app.use(cors());
const url_base = 'https://api.frankfurter.app';
app.get('/', (req, res) => {
res.send('Server is running!');
});
app.get('/api/latest', async (req, res) => {
try {
const response = await axios.get(`${url_base}/latest?from=USD`);
res.json(response.data);
} catch (error) {
res.status(500).json({ error: error.message });
}
});
app.get('/api/currencies', async (req, res) => {
try {
const response = await axios.get(`${url_base}/currencies`);
res.json(response.data);
} catch (error) {
res.status(500).json({ error: error.message });
}
});
app.listen(port, () => {
console.log(`Server running on port ${port}`);
});