forked from thakursachin467/nodejs-starter-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
31 lines (24 loc) · 848 Bytes
/
app.js
File metadata and controls
31 lines (24 loc) · 848 Bytes
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
const express = require('express');
const app = express();
const bodyParser = require('body-parser');
const passport = require('passport');
const mongoose = require('mongoose');
const auth = require('./api/routes/auth');
const port = process.env.PORT || 5000;
//body-parser middleware
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
//DB config
const db = require('./config/keys').mongoURI;
//connect to mongodb
mongoose.connect(db, { useNewUrlParser: true })
.then(() => console.log('database connected'))
.catch((err) => console.log(err));
//passport middleware
app.use(passport.initialize());
//passport config
require('./config/passport')(passport);
//API ROUTES
app.use('/api/auth', auth);
//YOU CAN CREATE MORE API ROUTES HERE
app.listen(port, () => console.log(`Server Started at port ${port}`));