-
Notifications
You must be signed in to change notification settings - Fork 60
/
app.js
78 lines (66 loc) · 1.78 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
const express = require("express");
const cors = require("cors");
const compression = require("compression");
const helmet = require("helmet");
const cookieParser = require("cookie-parser");
const morgan = require("morgan");
const fs = require("fs");
const path = require("path");
const env = require("./env");
const app = express();
const port = process.env.PORT || 8000;
app.use(helmet());
app.use(compression());
app.disable("x-powered-by");
app.use(express.urlencoded({ extended: true }));
app.use(express.json());
app.use(express.raw());
app.use("/public", express.static(__dirname + "/public")); // Public directory
/* Start Logging */
const log_path = env.log_path || path.join(__dirname, "logs");
// if log path not exist, log_path folder will be created
if (!fs.existsSync(log_path)) {
fs.mkdirSync(log_path, { recursive: true });
}
// Log all error requests status
app.use(
morgan("combined", {
skip: (req, res) => {
return res.statusCode < 400;
},
stream: fs.createWriteStream(path.join(log_path, "error.log"), {
flags: "a",
}),
})
);
// Log all success request status
app.use(
morgan("combined", {
skip: (req, res) => {
return res.statusCode > 400;
},
stream: fs.createWriteStream(path.join(log_path, "access.log"), {
flags: "a",
}),
})
);
/* End Logging */
/* Dynamic CORS */
app.use(
cors({
origin: "*",
})
);
/* End Dynamic CORS */
/* Start Cookie Settings */
app.use(cookieParser());
/* End Cookie Settings */
/* Start of Routing Modules */
const orderRoute = require("./routes/order_route");
orderRoute(app);
/* End of Routing Modules */
/* Check database connection */
app.listen(port, "0.0.0.0", () => {
console.log(`Server API listen on port ${port}`);
});
module.exports = app;