-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserver.js
51 lines (43 loc) · 1.41 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
import express from 'express';
import webpack from 'webpack';
import cookieParser from 'cookie-parser';
import fs from 'fs';
import React from 'react';
import Router from 'react-router';
import config from './webpack/development.config';
import routes from './dist/routes';
import fetchData from './src/utils/fetch-data';
const app = express();
const compiler = webpack(config);
const path = __dirname + '/index.html';
const isProduction = process.env.NODE_ENV === 'production';
const template = fs.readFileSync(path, {encoding: 'utf8'});
app.use(cookieParser());
if (isProduction) {
app.use(express.static('dist'));
} else {
const webpackMiddleware = require('webpack-dev-middleware');
app.use(webpackMiddleware(compiler, {
publicPath: config.output.publicPath
}));
}
app.get('*', (req, res) => {
Router.run(routes, req.url, (Root, state) => {
fetchData(state).then((data) => {
const props = {data, state, req};
const html = React.renderToString(<Root {...props} />);
let content = template.replace('__HTML__', html);
content = content.replace('__DATA__', JSON.stringify(data));
res.send(content);
});
});
});
const port = process.env.PORT || 3000;
const host = '0.0.0.0';
const server = app.listen(port, host, () => {
if (!isProduction) {
const hmr = require('webpack-dev-hmr');
hmr.listen(server, compiler);
}
console.log('Listening at http://%s:%s', host, port);
});