-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
37 lines (29 loc) · 958 Bytes
/
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
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 usersRouter from "./routes/users.js";
import activitiesRouter from "./routes/activities.js";
import participantsRouter from "./routes/participants.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("/users", usersRouter);
app.use("/activities", activitiesRouter);
app.use("/participants", participantsRouter);
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;