-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
32 lines (23 loc) · 899 Bytes
/
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
"use strict";
//Cargar modulos de node para crear el servidor
let express = require('express');
let bodyParser = require('body-parser');
//Ejecutar Express (http)
let app = express();
//Cargar Ficheros rutas
let article_routes = require('./routes/article');
//Middlewares
app.use(bodyParser.urlencoded({extented: false}));
app.use(bodyParser.json());
// CORS
app.use((req, res, next) => {
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Headers', 'Authorization, X-API-KEY, Origin, X-Requested-With, Content-Type, Accept, Access-Control-Allow-Request-Method');
res.header('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, DELETE');
res.header('Allow', 'GET, POST, OPTIONS, PUT, DELETE');
next();
});
//Añadir prefijos a rutas / Cargar rutas
app.use('/api',article_routes);
//Exportar modulo(fichero actual)
module.exports = app;