-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
44 lines (36 loc) · 1018 Bytes
/
server.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
import express from "express";
import mongoose from "mongoose";
import dotenv from "dotenv";
dotenv.config();
import donationRoute from "./routes/donationRoutes.js";
import requestDonationRoute from "./routes/requestRoutes.js";
// App config
const app = express();
const port = process.env.PORT || 8000;
// Middlewares
app.use(express.urlencoded({ extended: true }));
// parse application/json
app.use(express.json());
// API routes
// req: request
// res: response
app.use("/donation", donationRoute);
app.use("/request", requestDonationRoute);
app.get("/", (req, res) => res.status(200).send("Hello World || Home"));
// Listening to the server
app.listen(port, () => console.log(`listening on localhost:${port}`));
/**
* DB config
* Change name, password and dbname
*
* URI stands for Uniform Resource Identifier
*/
mongoose.connect(
process.env.mongoDB_Connection,
{
useCreateIndex: true,
useNewUrlParser: true,
useUnifiedTopology: true,
},
() => console.log("connected to DB!")
);