-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
executable file
·80 lines (65 loc) · 1.88 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
68
69
70
71
72
73
74
75
76
77
78
79
80
import path from "path";
import express from "express";
import morgan from "morgan";
import rateLimit from "express-rate-limit";
import helmet from "helmet";
import xss from "xss-clean";
import hpp from "hpp";
import cookieParser from "cookie-parser";
import compression from "compression";
import cors from "cors";
// import AppError from './utils/appError';
import viewRouter from "./routes/viewRoutes";
import errorRouter from "./routes/errorRoutes";
import orderRouter from "./routes/orderRoutes";
// Start express app
const app = express();
app.set("view engine", "pug");
app.set("views", path.join(__dirname, "views/pages"));
// GLOBAL MIDDLEWARES
// Implement CORS
app.use(cors());
app.options("*", cors());
// Serving static files
app.use("/static", express.static(path.join(__dirname, "static")));
// // Set security HTTP headers
app.use(
helmet.contentSecurityPolicy({
directives: {
defaultSrc: ["'self'"],
styleSrc: ["'self'", "'unsafe-inline'"],
scriptSrc: ["'self'", "'unsafe-inline'"],
},
})
);
// Development logging
if (process.env.NODE_ENV === "development") {
app.use(morgan("dev"));
}
// Limit requests from same API
const limiter = rateLimit({
max: 100,
windowMs: 60 * 60 * 1000,
message: "Too many requests from this IP, please try again in an hour!",
});
app.use("/order", limiter);
// Body parser, reading data from body into req.body
app.use(express.json({ limit: "10kb" }));
app.use(express.urlencoded({ extended: true, limit: "10kb" }));
app.use(cookieParser());
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
// // Data sanitization against XSS
app.use(xss());
// // Prevent parameter pollution
app.use(
hpp({
whitelist: ["name", "email", "phone", "checkbox",],
})
);
app.use(compression());
// 3) ROUTES
app.use("/", viewRouter);
app.use("/order", orderRouter);
app.all("*", errorRouter);
export default app;