forked from goitacademy/nodejs-homework-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
32 lines (25 loc) · 803 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
import express from "express";
import logger from "morgan";
import cors from "cors";
import "dotenv/config";
import contactsRouter from "./routes/api/contacts.js";
import authRouter from "./routes/api/auth-router.js";
const app = express();
const formatsLogger = app.get("env") === "development" ? "dev" : "short";
app.use(logger(formatsLogger));
app.use(cors());
app.use(express.json());
app.use(express.static("public"));
app.use("/api/users", authRouter);
app.use("/api/contacts", contactsRouter);
app.use((req, res) => {
res.status(404).json({ message: "Page not found" });
});
app.use((err, req, res, next) => {
if (err.status) {
res.status(err.status).json({ error: err.message });
} else {
res.status(500).json({ error: "Internal Server Error" });
}
});
export default app;