-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
33 lines (28 loc) · 978 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
const express = require("express");
const app = express();
require("dotenv").config();
const tasks = require("./routes/tasks");
const connectDb = require("./db/connect");
const notFound = require("./middleware/not-found");
const errorHandlerMidleware = require("./middleware/error-handler");
//midlleware
//connect static files here
app.use(express.static("./public"));
//the express.json()will let us access the data via req.body
app.use(express.json());
app.use("/api/v1/tasks", tasks);
app.use("/app/v1/tasks/:id", tasks);
//the notFound middleware is to handle the not existed routes incase the client requested one
app.use(notFound);
app.use(errorHandlerMidleware);
const port = process.env.PORT || 5050;
const startApp = async () => {
try {
await connectDb(process.env.DbUri);
console.log(`DB is connected successfully!`);
app.listen(port, console.log(`We are listening on port ${port}`));
} catch (error) {
console.log(error);
}
};
startApp();