-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
55 lines (50 loc) · 1.75 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
import {} from 'dotenv/config';
import 'express-async-errors';
import express from 'express';
import { connectDB } from './db/connection.js';
import { notFoundMiddleware } from './middleware/not-found.js';
import { authRoute } from './routes/auth.js';
import { jobsRoute } from './routes/jobs.js';
import { errorHandlerMiddleware } from './middleware/error-handler.js';
import { authMiddleware } from './middleware/authentication.js';
// extra security packages
import helmet from 'helmet';
import cors from 'cors';
import xss from 'xss-clean';
import rateLimit from 'express-rate-limit';
//swagger ui
import swaggerUI from 'swagger-ui-express';
import YAML from 'yamljs';
const swaggerDoc = YAML.load('./docs-swagger.yaml');
const app = express();
const port = process.env.PORT || 3000;
app.set('trust proxy', 1)
//middleware
app.use(rateLimit({
windowMs: 15 * 60 * 1000, // 15 minutes
max: 100, // Limit each IP to 100 requests per `window` (here, per 15 minutes)
standardHeaders: true, // Return rate limit info in the `RateLimit-*` headers
legacyHeaders: false, // Disable the `X-RateLimit-*` headers
}));
app.use(express.json());
app.use(helmet());
app.use(xss());
app.use(cors());
//routes
app.get('/', (req, res)=> {
res.send('<h1>jobs API</h1><a href="/api-docs">Documentaion</a>');
});
app.use('/api-docs', swaggerUI.serve, swaggerUI.setup(swaggerDoc))
app.use('/api/v1/auth', authRoute);
app.use('/api/v1/jobs', authMiddleware, jobsRoute);
app.use(errorHandlerMiddleware);
app.use(notFoundMiddleware);
const start = async () => {
try {
await connectDB(process.env.MONGO_URL);
app.listen(port, () => console.log(`Server is listening on port ${port}`));
} catch (error) {
console.log(error);
}
}
start();