-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathapp.js
34 lines (26 loc) · 907 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
/**
* Created by 12 on 2017/7/3.
*/
const express = require('express')
const app = express()
// 跨域设置
// app.all('*', function (req, res, next) {
// res.header("Access-Control-Allow-Credentials", true)
// res.header("Access-Control-Allow-Origin", "*")
// res.header("Access-Control-Allow-Headers", "X-Requested-With")
// res.header("Access-Control-Allow-Methods", "PUT,POST,GET,DELETE,OPTIONS")
// res.header("X-Powered-By", ' 3.2.1')
// res.header("Content-Type", "application/json;charset=utf-8")
// next()
// })
app.get('/', function (req, res) {
res.send('hello express')
})
app.get('/book', require('./router/book'))
app.get('/booklist', require('./router/booklist'))
app.get('/titles', require('./router/booktitles'))
app.get('/type', require('./router/type'))
const port = process.env.PORT || 3333
app.listen(3333, () => {
console.log(`server running @${port}`)
})