-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
67 lines (56 loc) · 1.61 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
55
56
57
58
59
60
61
62
63
64
65
66
67
// packages
import dotenv from "dotenv";
dotenv.config();
import "express-async-errors";
import express from "express";
import xss from "xss-clean";
import helmet from "helmet";
import cors from "cors";
import rateLimit from "express-rate-limit";
// imports
import jobsRouter from "./routes/jobs.js";
import authRouter from "./routes/auth.js";
import notFound from "./middleware/not-found.js";
import errorHandlerMiddleware from "./middleware/error-handler.js";
import connectDB from "./db/connect.js";
import authentificationMiddleWare from "./middleware/authentication.js";
//Swagger
import SwaggerUI from "swagger-ui-express";
import YAML from "yamljs";
const swagerDocument = YAML.load("./swagger.yaml");
const app = express();
app.use(express.json());
// middleware
// seccurity middleware
app.set("trust proxy", 1);
app.use(
rateLimit({
windowMs: 15 * 60 * 1000, // 15 min
max: 100, //Limit each IP to 100 requests per windowMS
})
);
app.use(helmet());
app.use(cors());
app.use(xss());
const port = process.env.PORT || 5000;
//Main express app
//routers
app.use("/api/v1/jobs/", authentificationMiddleWare, jobsRouter);
app.use("/api/v1/auth/", authRouter);
app.get("/", (req, res) => {
res.send('<h1>Jobs Api</h1><a href="/api-docs">Documentation</a>');
});
app.use("/api-docs", SwaggerUI.serve, SwaggerUI.setup(swagerDocument));
const start = async () => {
try {
await connectDB(process.env.MONGO_URI);
app.listen(port, () =>
console.log(`Example app listening on port ${port}!`)
);
} catch (error) {
console.log(error);
}
};
app.use(errorHandlerMiddleware);
app.use(notFound);
start();