-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
50 lines (41 loc) · 1.29 KB
/
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
45
46
47
48
49
50
const express = require("express")
const app = express()
const bodyParser = require("body-parser")
const cookieParser = require("cookie-parser")
const config = require("./config/key")
const mongoose = require("mongoose")
const connect = mongoose
.connect(config.mongoURI, {
useNewUrlParser: true,
useUnifiedTopology: true,
})
.then(() => console.log("MongoDB Connected..."))
.catch((err) => console.log(err))
app.use(bodyParser.urlencoded({ extended: true }))
app.use(bodyParser.json())
app.use(cookieParser())
app.use("/api/users", require("./routes/users"))
app.use("/api/blog", require("./routes/blog"))
//use this to show the image you have in node js server to client (react js)
//https://stackoverflow.com/questions/48914987/send-image-path-from-node-js-express-server-to-react-client
app.use("/uploads", express.static("uploads"))
// Serve static assets if in production
// if (process.env.NODE_ENV === "production") {
// Set static folder
// app.use(express.static("client/build"))
// index.html for all page routes
// app.get("*", (req, res) => {
// res.sendFile(
// path.resolve(
// __dirname,
// "client",
// "build",
// "index.html"
// )
// )
// })
// }
const port = process.env.PORT || 5000
app.listen(port, () => {
console.log(`Server Running at ${port}`)
})