-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprod.server.js
53 lines (46 loc) · 1.05 KB
/
prod.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
/**
* @description:
* @author: yitian.mao<yitian.mao@hand-china.com>
* @date: 2018/4/9
*/
const express = require('express');
const config = require('./config/index');
const port = process.env.PORT || config.dev.port;
const app = express();
const router = express.Router();
router.get('/', function (req, res, next) {
req.url = 'index.html';
next();
});
app.use(router);
const appData = require('./data.json');
const seller = appData.seller;
const goods = appData.goods;
const ratings = appData.ratings;
app.get('/api/seller', (req, res) => {
res.json({
errno: 0,
data: seller
})
});
app.get('/api/goods', (req, res) => {
res.json({
errno: 0,
data: goods
})
});
app.get('/api/ratings', (req, res) => {
res.json({
errno: 0,
data: ratings
})
});
app.use('/api', router);
app.use(express.static('./dist'));
module.exports = app.listen(port, function (err) {
if (err) {
console.log(err);
return;
}
console.log('Listening at http://localhost:' + port + '\n');
})