Make WebPack dev run on a different port

npm start always runs on localhost:8080 by default.

To change, edit webpack.config.js and add:

devServer: {
inline:true,
port: 8008
},