-
Notifications
You must be signed in to change notification settings - Fork 0
/
prod.server.js
55 lines (42 loc) · 980 Bytes
/
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
54
55
const express = require('express');
const config = require('./config/index');
var port = process.env.PORT || config.build.port;
var app = express();
var router = express.Router();
router.get('/', function(req, res, next) {
req.url = '/index.html';
next();
});
app.use(router);
var appData = require('./data.json');
var seller = appData.seller;
var goods = appData.goods;
var ratings = appData.ratings;
var apiRoutes = express.Router();
apiRoutes.get('/seller', function(req, res) {
res.json({
errno: 0,
data: seller
});
});
apiRoutes.get('/goods', function(req, res){
res.json({
errno: 0,
data: goods
});
});
apiRoutes.get('/ratings', function(req, res){
res.json({
errno: 0,
data: ratings
});
});
app.use('/api', apiRoutes);
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')
});