Created
November 3, 2016 05:29
-
-
Save ooade/c1be9deb38284e4910a18df1e8881c2b to your computer and use it in GitHub Desktop.
Express with webpack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Grab dependencies | |
const express = require('express'); | |
const chalk = require('chalk'); // Chalk was added by create-react-app, use only on the dev side | |
const webpack = require('webpack'); | |
const webpackDevServer = require('webpack-dev-server'); | |
// load up our environment variables | |
require('dotenv').load(); | |
const PORT = process.env.PORT || 3000; | |
// Grab webpack dev config file from react-scripts | |
const webpackConfig = require('../node_modules/react-scripts/config/webpack.config.dev'); | |
// Initialize Compiler with the webpackConfig | |
const compiler = webpack(webpackConfig); | |
// Initialize express | |
const app = express(); | |
// Initialize the server by creating a new instance of webpackDevServer | |
const server = new webpackDevServer(compiler, { | |
noInfo: true, | |
setup: (app) => { | |
// express app instance exist here, we could create an API here --> | |
} | |
}); | |
// Start up our server | |
server.listen(PORT, (error) => { | |
if (error) throw error; | |
console.log(chalk.green('Webpack Server is listening on port'), PORT); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment