Browserify, Modules for Using in the Browser | Bypeople

Browserify, Modules for Using in the Browser

Browserify is a development tool that allows to write node.js-style modules that compile for using in the browser. Just like node, the modules are writen in separate files, exporting external methods and properties using the module.exports and exports variables. We can even require other modules using the require function, and if we omit the relative path it’ll resolve to the module in the node_modules directory.



Related Deals


Related Posts