-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
31 lines (22 loc) · 895 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
const http = require('http');
const express = require('express');
const bodyParser = require("body-parser");
const routes = require('./v1/routes/routes');
const port = process.env.PORT || 3000;
const app = express();
app.use(bodyParser.json({limit: "50mb"}));
app.use(bodyParser.urlencoded({limit: "50mb", extended: true, parameterLimit:50000}));
// Allowing access to app resources from other servers.
app.use((req, res, next) => {
res.setHeader("Access-Control-Allow-Origin", "*");
res.setHeader("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
res.setHeader("Access-Control-Allow-Methods", "GET, POST, PATCH, PUT, DELETE, OPTIONS");
next();
});
app.use("/api", routes);
app.listen(port, function (err) {
if (err)
throw err;
console.log('Your server is running on port: ' + port + '.');
});
module.exports = app;