forked from pburtchaell/redux-promise-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
39 lines (31 loc) · 972 Bytes
/
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
import path from 'path';
import server from 'json-server';
import webpack from 'webpack';
import config from './webpack.config';
const port = process.env.PORT || 8000;
const address = 'localhost';
const app = server.create();
const router = server.router(require('./generate').default());
const compiler = webpack(config);
app.use(require('webpack-dev-middleware')(compiler, {
noInfo: true,
publicPath: config.output.publicPath
}));
app.use(require('webpack-hot-middleware')(compiler, {
log: console.log,
path: '/__webpack_hmr',
heartbeat: 10 * 1000
}));
app.get('/complex', (req, res) => {
res.sendFile(path.join(__dirname, 'complex', 'index.html'));
});
app.get('/simple', (req, res) => {
res.sendFile(path.join(__dirname, 'simple', 'index.html'))
});
// Mock API
app.use(server.defaults());
app.use('/api', router);
app.listen(port, address, error => {
if (error) throw error;
console.log('server running at http://%s:%d', address, port);
});