Browserify is an excellent tool that lets you use CommonJS modules right in the browser by bundling all of them up into a single large file. If you are well acquainted with Node and it’s way of loading modules via require('module') and exporting them using module.exports = ..., this is the exact pattern browserify brings [...]
The post Browser-Side Node.js Style Modules require() and exports with Browserify appeared first on Code Theory.