A boilerplate for express using webpack and babel
Install dependencies
npm i
Start webpack with watch mode and serve build/index.js with NodemonPlugin at http://localhost:4000
npm start
Serve build/index.js with nodemon at http://localhost:4000
npm run start-dev
Start webpack and use UglifyJsPlugin for minification
npm run build-prod
Serve dist/index.js with node at http://localhost:4000
node dist/index.js