forked from alanrsoares/redux-game-of-life
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevServer.js
39 lines (30 loc) · 986 Bytes
/
devServer.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
const path = require('path')
const express = require('express')
const http = require('http')
const webpack = require('webpack')
const config = (
process.env['NODE_ENV'] !== 'production'
? require('./webpack.config.dev')
: require('./webpack.config.prod')
)
const dispatcher = require('redux-scuttlebutt/lib/server').default
const getFilterHistory = require('./src/store/getFilterHistory').getFilterHistory
const app = express()
const server = http.Server(app)
const compiler = webpack(config)
const PORT = process.env['PORT'] || 3000
app.use(require('webpack-dev-middleware')(compiler, {
noInfo: true,
publicPath: config.output.publicPath
}))
app.use(require('webpack-hot-middleware')(compiler))
app.get('*', (req, res) => res.sendFile(path.join(__dirname, 'index.html')))
dispatcher(server, {
filterHistory: getFilterHistory()
})
server.listen(PORT, (err) => {
if (err) {
return console.log(err)
}
console.log(`Listening at http://localhost:${PORT}`)
})