-
Notifications
You must be signed in to change notification settings - Fork 129
/
dev.js
48 lines (40 loc) · 1.19 KB
/
dev.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
/* eslint no-console: 0 */
import express from 'express'
import webpack from 'webpack'
import webpackMiddleware from 'webpack-dev-middleware'
import webpackHotMiddleware from 'webpack-hot-middleware'
import config from './webpack.config.js'
import bodyParser from 'body-parser'
import { graphqlExpress, graphiqlExpress } from 'graphql-server-express'
import { executableSchema } from './schema/schema'
import path from 'path'
const APP_PORT = 3000
let app = express()
const compiler = webpack(config)
const middleware = webpackMiddleware(compiler, {
publicPath: config.output.publicPath,
contentBase: './src',
stats: {
colors: true,
hash: false,
timings: true,
chunks: false,
chunkModules: false,
modules: false
}
})
app.use(middleware)
app.use(webpackHotMiddleware(compiler))
app.use('/graphql', bodyParser.json(), graphqlExpress({
schema: executableSchema
}))
app.use('/graphiql', graphiqlExpress({
endpointURL: '/graphql',
}))
app.get('*', function response (req, res) {
res.write(middleware.fileSystem.readFileSync(path.join(__dirname, 'dist/index.html')))
res.end()
})
app.listen(APP_PORT, () => {
console.log(`App is now running on http://localhost:${APP_PORT}`)
})