- Install Node JS
- Check installation of NodeJS and NPM (installed with NodeJS):
npm -v
andnode -v
If you want to develop some Javascript the needs to run in a browser and want to make use of the NodeJS development and package ecosystem, much of which involves code that is incompatible with a browser, then you'll need a way to transform browser-incompatible code into compatible code.
I made use of it recently for thundergolfer/better-hackerrank-test-workflow. (currently private)
- Use browserify to transform some NodeJS script into browser compatible code and run it in your browser
- Talk about exactly what browserify is doing under the hood
- Talk about alternatives to browserify that solve the same problem, possibly in different contexts (eg. webpack)