-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.ts
65 lines (57 loc) · 1.52 KB
/
app.ts
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
require("dotenv").config();
import express, { NextFunction, Request, Response } from "express";
export const app = express();
import cors from "cors";
import cookieParser from "cookie-parser";
import { ErrorMiddleware } from "./middleware/error";
import userRouter from "./routes/user.route";
import courseRouter from "./routes/course.route";
import orderRouter from "./routes/order.route";
import notificationRouter from "./routes/notification.route";
import analyticsRouter from "./routes/analytics.route";
import layoutRouter from "./routes/layout.route";
import { rateLimit } from 'express-rate-limit'
// body parser
app.use(express.json({ limit: "50mb" }));
// cookie parser
app.use(cookieParser());
// cors => cross origin resource sharing
app.use(
cors({
origin: ["https://www.dasinaq.com"],
credentials: true,
})
);
// api requests limit
const limiter = rateLimit({
windowMs: 15 * 60 * 1000,
max: 500,
standardHeaders: 'draft-7',
legacyHeaders: false,
})
// routes
app.use(
"/api/v1",
userRouter,
orderRouter,
courseRouter,
notificationRouter,
analyticsRouter,
layoutRouter
);
// testing api
app.get("/test", (req: Request, res: Response, next: NextFunction) => {
res.status(200).json({
succcess: true,
message: "API is working",
});
});
// unknown route
app.all("*", (req: Request, res: Response, next: NextFunction) => {
const err = new Error(`Route ${req.originalUrl} not found`) as any;
err.statusCode = 404;
next(err);
});
// middleware calls
app.use(limiter);
app.use(ErrorMiddleware);