-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
34 lines (28 loc) · 853 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
// from FCC MERN Tutorial
const express = require('express');
const cors = require('cors');
const mongoose = require('mongoose');
require('dotenv').config();
// create express server
const app = express();
const port = process.env.PORT || 5000;
// cors middleware
app.use(cors());
app.use(express.json()); // parse json
const uri = process.env.MONGODB_KEY;
// need these flags to deal with things that mongoDB has deprecated
mongoose.connect(uri, {
useNewUrlParser: true,
useCreateIndex: true,
useUnifiedTopology: true
});
const connection = mongoose.connection;
connection.once('open', () => {
console.log("MongoDB connection established successfully!");
});
const apiRouter = require('./routes/api');
app.use('/api', apiRouter);
// starts server
app.listen(port, () => {
console.log(`Server is running on port: ${port}`);
});