-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
54 lines (48 loc) · 1.17 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const express = require("express");
const path = require("path");
const cookieParser = require("cookie-parser");
const logger = require("morgan");
const { initialize } = require("express-openapi");
const swaggerUi = require("swagger-ui-express");
const app = express();
const dotenv = require('dotenv');
dotenv.config();
app.listen(3030);
app.use(logger("dev"));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
// OpenAPI routes
initialize({
app,
apiDoc: require("./api/api-doc"),
paths: "./api/paths",
});
// Not found routes
app.get('/', function(req, res){
res.send({
'status' : 400,
'message' : 'Invalid Request'
}, 404);
});
// Default routes
app.use((err, req, res, next) => {
if (err.name === 'UnauthorizedError') {
res.status(500).send(err.message);
}
});
// OpenAPI UI
app.use(
"/api-documentation",
swaggerUi.serve,
swaggerUi.setup(null, {
swaggerOptions: {
url: "http://localhost:3030/api-docs",
},
})
);
console.log("App running on port http://localhost:3030");
console.log(
"OpenAPI documentation available in http://localhost:3030/api-documentation"
);
module.exports = app;