- Install npm
https://docs.npmjs.com/getting-started/installing-node
. - Download dependencies
npm install
. - Add webpack to commandline path
npm install webpack -g
. - Build bundle.js (found in dist/bundle.js)
webpack
. - Install node http-server
npm install http-server -g
. - Start http-server
http-server -p 8000
. - Navigate to url
localhost:8000
.
webpack --watch
http://instil.co/2016/09/27/angular-1-es6/