-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
43 lines (33 loc) · 985 Bytes
/
app.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
const express = require('express');
const path = require('path');
const bodyParser = require('body-parser');
const cors = require('cors');
const passport = require('passport');
const mongoose = require('mongoose');
const config = require('./config/database');
// Database connection + Check if we're connected
mongoose.connect(config.database);
mongoose.connection.on('connected',() => {
console.log('Connected to database' + config.database);
})
mongoose.connection.on('error',(error) => {
console.log('database error' + error);
})
const app = express();
const users = require('./routes/users');
// Port number
const port = 3000;
// Middleware
app.use(cors());
app.use(bodyParser.json());
// set static folder and folders.
app.use(express.static(path.join(__dirname, 'public')));
app.use('/users', users);
// Index route
app.get('/', (req, res ) => {
res.send('hello');
})
// Start server
app.listen(port, ()=> {
console.log('Server started on ' + port)
});