-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathapp.js
executable file
·84 lines (72 loc) · 2.28 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
81
82
83
84
/*
______ _ _ _ _
| ____| | | /| (_) (_)/|
| |____ _____ | |_ _| |_ _| |_| |_ _ _
| __\ \ / / _ \| | | | | __| | | | __| | | |
| |___\ V / (_) | | |_| | |_| | | | |_| |_| |
|______\_/ \___/|_|\__,_|\__|_|_|_|\__|\__, |
___ ___ _ ____ _____ _ __ __/ |
____ / __|/ _ \ '__\ \ / / _ \ '__| |___/
|____| \__ \ __/ | \ V / __/ |
|___/\___|_| \_/ \___|_|
* https://github.com/evoluteur/evolutility-server-node
* (c) 2023 Olivier Giulieri
*/
import express from "express";
import path from "path";
import helmet from "helmet";
import bodyParser from "body-parser";
import routes from "./js/routes.js";
import { fileURLToPath } from "url";
import { dirname } from "path";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const app = express();
app.use(helmet());
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(express.static(path.join(__dirname, "./client", "public")));
// - prevent denial of cross origin requests
// TODO: REMOVE IF UNNECESSARY
app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Methods", "GET,PUT,POST,DELETE,OPTIONS");
res.header(
"Access-Control-Allow-Headers",
"Origin, X-Requested-With, Content-Type, Accept"
);
//res.header("Access-Control-Request-Headers", "X-Requested-With,Access-Control-Request-Method,Access-Control-Request-Headers, accept, Content-Type");
next();
});
// - REST server
app.use("/", routes);
// - catch 404 and forward to error handler
app.use(function (err, req, res, next) {
//var err = new Error('Not Found');
//err.status = 404;
//next(err);
console.error(err.stack);
res.status(500).send("Something broke!");
});
// error handlers
// development error handler
// will print stacktrace
if (app.get("env") === "development") {
app.use(function (err, req, res, next) {
res.status(err.status || 500);
res.render("error", {
message: err.message,
error: err,
});
});
}
// production error handler
// no stacktraces leaked to user
app.use(function (err, req, res, next) {
res.status(err.status || 500);
res.render("error", {
message: err.message,
error: {},
});
});
export default app;