-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
30 lines (23 loc) · 938 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
/*
STARTS EXPRESS APP AND CREATES PORT CONNECTION
TO PREPARE BACK-END FOR HTTP REQUESTS
*/
//imports
const express = require("express");
const connectDB = require("./config/db");
//start Express application
app = express();
//Create connection to database
connectDB();
//Initialize middleware that allows you to ready request body json
app.use(express.json({ extended: false }));
//HTTP GET request to root of application
app.get("/", (req, res) => res.send("Backend is running"));
//Application routes
app.use("/api/users", require("./routes/api/users"));
app.use("/api/auth", require("./routes/api/auth"));
app.use("/api/profile", require("./routes/api/profile"));
app.use("/api/posts", require("./routes/api/posts"));
//set port to send requests to as the one defined by the process or port localhost:5000 as fallback
const PORT = process.env.PORT || 5000;
app.listen(PORT, () => console.log(`Server started on port ${PORT}`));