Setup
After setting up a simple project to use webpack, babel and react issuing $npm i -g webpack-dev-server will install the development http server for quicker development.
Modifying webpack.config.js
var path = require('path');
module.exports = {
entry: './src/index.js',
output: {
...