-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
30 lines (26 loc) · 877 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
const express = require('express');
const app = require('./dist/bundle.server.js').default;
const {renderToString} = require('react-dom/server');
const port = 5000;
const server = express();
server.use(express.static('dist'));
server.get('*', (req, res) => {
preloadedState = {counter: 50};
res.send(`
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script>window.__PRELOADED_STATE__=${JSON.stringify(preloadedState)};</script>
</head>
<body>
<div id="mount">${renderToString(app(preloadedState))}</div>
<script src="bundle.client.js"></script>
</body>
</html>`
)}
);
server.listen(port, () => console.log(`Server up on ${port}`));