-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
49 lines (36 loc) · 1.19 KB
/
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
44
45
46
47
48
//load the dependencies
const express = require('express');
const bodyParser = require('body-parser')
const morgan = require('morgan')
const mongoose = require('mongoose')
const path = require('path')
//load the config
const config = require('./config')
const PORT = process.env.PORT || config.serverPort;
//express configuration
const app = express()
//parse JSON and url-encoded query
app.use(bodyParser.urlencoded({extended: false}))
app.use(bodyParser.json())
//print the request log on console
app.use(morgan('dev'))
//set the secret key variable for jwt
app.set('jwt-secret', config.secret)
//index page, just for testing
app.get('/', (request, response) => {
response.send('Hello JWT')
})
//configure api router
app.use('/api', require('./routes/api'))
//open the server
app.listen(PORT, () => {
console.log('Express is running on port', PORT)
})
//connect to mongoDB
mongoose.connect(config.mongodbUri, {useNewUrlParser : true, useUnifiedTopology : true, useCreateIndex : true, useFindAndModify : false})
const db = mongoose.connection
db.on('error', console.error)
db.once('open', ()=>{
console.log('connected to mongodb')
})
app.use(express.static(path.join((__dirname, 'scripts'))))