-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
148 lines (114 loc) · 3.76 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
var webpack = require('webpack')
var webpackDevMiddleware = require('webpack-dev-middleware')
var webpackHotMiddleware = require('webpack-hot-middleware')
var config = require('./webpack.config')
var express = require('express')
var app = express()
var port = 9000
var compiler = webpack(config)
app.use(webpackDevMiddleware(compiler, {
noInfo: true,
publicPath: config.output.publicPath,
hot: true,
watchOptions: {
aggregateTimeout: 300,
poll: 1000 // is this the same as specifying --watch-poll?
}
}))
app.use(webpackHotMiddleware(compiler))
function nocache(req, res, next) {
res.header('Cache-Control', 'private, no-cache, no-store, must-revalidate');
res.header('Expires', '-1');
res.header('Pragma', 'no-cache');
next();
}
app.use(express.static(__dirname + '/build'));
app.get("/h5/index", function(req, res) {
res.header('Cache-Control', 'private, no-cache, no-store, must-revalidate');
res.header('Expires', '-1');
res.header('Pragma', 'no-cache');
res.sendFile(__dirname + '/build/html/index.html')
})
app.get("/h5/message", function(req, res) {
res.sendFile(__dirname + '/build/html/message.html')
})
app.get("/h5/messageDetail", function(req, res) {
res.sendFile(__dirname + '/build/html/messageDetail.html')
})
app.get("/h5/feedback", function(req, res) {
res.header('Cache-Control', 'private, no-cache, no-store, must-revalidate');
res.header('Expires', '-1');
res.header('Pragma', 'no-cache');
res.sendFile(__dirname + '/build/html/feedback.html')
})
app.get("/h5/feedbackResult", function(req, res) {
res.sendFile(__dirname + '/build/html/feedbackResult.html')
})
app.get("/h5/feedbackFailed", function(req, res) {
res.sendFile(__dirname + '/build/html/feedbackFailed.html')
})
app.get("/h5/protocol", function(req, res) {
res.header('Cache-Control', 'private, no-cache, no-store, must-revalidate');
res.header('Expires', '-1');
res.header('Pragma', 'no-cache');
res.sendFile(__dirname + '/build/html/protocol.html')
})
app.get("/h5/protocolEnable", function(req, res) {
res.sendFile(__dirname + '/build/html/protocolEnable.html')
})
app.get("/h5/share", function(req, res) {
res.header('Cache-Control', 'private, no-cache, no-store, must-revalidate');
res.header('Expires', '-1');
res.header('Pragma', 'no-cache');
res.sendFile(__dirname + '/build/html/share.html')
})
app.get("/h5/userCredit", function(req, res) {
res.sendFile(__dirname + '/build/html/index.html')
})
app.get("/h5/adclose", function(req, res) {
res.sendFile(__dirname + '/build/html/index.html')
})
app.get("/h5/swipDemo", function(req, res) {
res.sendFile(__dirname + '/build/html/swipDemo.html')
})
app.get("/h5/dashbord", function(req, res) {
res.sendFile(__dirname + '/build/html/dashbord.html')
})
app.get("/h5/shareResult", function(req, res) {
res.sendFile(__dirname + '/build/html/shareResult.html')
})
app.get("/h5/test", function(req, res) {
res.header('Cache-Control', 'private, no-cache, no-store, must-revalidate');
res.header('Expires', '-1');
res.header('Pragma', 'no-cache');
res.sendFile(__dirname + '/build/html/test.html')
})
app.get("/myapi/testTimeout", function(req, res) {
var json ={
"data": {
"respCode": "00000000",
"respMsg": "处理成功",
"value": 1 //1-签约成功,0签约失败,2-已经签约
}
}
setTimeout(function(){
res.send(json)
},18000)
})
app.get("/myapi/testTimeout1", function(req, res) {
var json ={
"data": {
"respCode": "00000000",
"respMsg": "处理成功",
"value": 1 //1-签约成功,0签约失败,2-已经签约
}
}
res.send(json)
})
app.listen(port, function(error) {
if (error) {
console.error(error)
} else {
console.info("==> 🌎 Listening on port %s. Open up http://localhost:%s/ in your browser.", port, port)
}
})