-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
51 lines (37 loc) · 1.32 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
const path = require("path");
const express = require("express");
const bodyParser = require("body-parser");
const compression = require("compression")
const itemRoutes = require("./routes/items");
require("dotenv").config();
const app = express();
app.use(bodyParser.json());
app.use("/images", express.static(path.join(__dirname, "images")));
app.use("/audio", express.static(path.join(__dirname, "audio")));
app.use((req, res, next) => {
res.setHeader("Access-Control-Allow-Headers", "Content-Type, Authorization");
res.header('Access-Control-Allow-Origin', "*");
res.header('Access-Control-Allow-Methods', 'GET');
next();
});
app.use("/items", itemRoutes);
app.use((error, req, res, next) => {
console.log(error);
const status = error.statusCode || 500;
const message = error.message;
const data = error.data;
res.status(status).json({ message: message, data: data });
});
const PORT = process.env.PORT || 8080;
if (process.env.NODE_ENV === "production") {
app.use(compression())
app.use(express.static(path.join(__dirname, "client/build")));
}
app.get("/*", function (req, res) {
res.sendFile(path.join(__dirname, "client/build/index.html"), function (err) {
if (err) {
res.status(500).send(err);
}
});
});
app.listen(PORT, console.log(`Server is running at port ${PORT}`));