Browserify is a tool to bundle Node.js-flavored CommonJS modules.
'use strict'; var someLibrary = { method: function() {} }; module.exports = someLibrary;
'use strict'; var someLibrary = require('someLibrary'); // tyte! someLibrary.method();
By Cameron Sampson