This repo showcases a simplest way of doing NodeJS-style programming in web frontend.
- browserify: Allows node-style 'require' module-management.
- browserify-shim: Allows using non-NPM modules with browserify
- babelify: JS Transpiler
- babel-presets-es2015: ES6 -> ES5 presets.
- uglifyify: uglify the resulting code
- watchify: watch capability for browserify
- Coding entry-point is main.js
- Transpilation is done through run.js
- bundle.js is the final result to be included by the browser
- npm start: use watchify to efficiently watch for file changes and trigger re-building
- npm build: build once
- npm buildManually: same as (2) but using browserify cli