Install the dependencies.
npm install
Then go to either of the subdirectories and build the code with
browserify main.js -t babelify --outfile build.js
With live reloading,
npm install -g watchify browser-sync
watchify main.js -v -t babelify --outfile build.js \
& browser-sync start --server --files="index.html, build.js"