-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.js
More file actions
36 lines (29 loc) · 957 Bytes
/
app.js
File metadata and controls
36 lines (29 loc) · 957 Bytes
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
import express from "express";
import path from "path";
import __dirname from "./dirname.js";
import cookieParser from "cookie-parser";
import cors from "cors";
import logger from "morgan";
import startCleanRouter from "./routes/startClean.js";
import logCleanRouter from "./routes/logClean.js";
import joinCleanRouter from "./routes/joinClean.js";
const app = express();
app.use(logger("dev"));
app.use(cors());
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, "public")));
app.use("/startclean", startCleanRouter);
app.use("/logclean", logCleanRouter);
app.use("/joinclean", joinCleanRouter);
app.use(function (req, res, next) {
res
.status(404)
.json({ message: "We couldn't find what you were looking for 😞" });
});
app.use(function (err, req, res, next) {
console.error(err.stack);
res.status(500).json(err);
});
export default app;