-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.ts
61 lines (50 loc) · 1.36 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
/** @format */
// Package imports
import express, {NextFunction, Request, Response} from 'express';
import cors from 'cors';
require('dotenv').config();
import cookieParser from 'cookie-parser';
// File Imports
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';
export const app = express();
// Body parser
app.use(express.json({limit: '50mb'}));
// Cookie parser
app.use(cookieParser());
// Cors <=> protecting our apis by origins
app.use(
cors({
origin: process.env.ORIGIN,
}),
);
// Primary routes
app.use(
'/api/v1',
userRouter,
orderRouter,
courseRouter,
notificationRouter,
analyticsRouter,
layoutRouter,
);
// Testing the API
app.get('/test', (req: Request, res: Response, next: NextFunction) => {
res.status(200).json({
success: true,
message: 'APi is working',
});
});
// Unknow api route request
app.all('*', (req: Request, res: Response, next: NextFunction) => {
const error = new Error(`Route ${req.originalUrl} not found`) as any;
error.statusCode = 404;
next(error);
});
// Handle errors
app.use(ErrorMiddleware);