Software:Browserify

From HandWiki
Short description: Open-source JavaScript tool
Browserify
Browserify.svg
Developer(s)Browserling team and Browserify contributors
Initial release9 June 2011; 12 years ago (2011-06-09)[1]
Repositorygithub.com/browserify/browserify
Written inJavaScript
Operating systemLinux, macOS, Windows
PlatformNode.js
LicenseMIT License[2][3]
Websitebrowserify.org

Browserify is an open-source JavaScript bundler tool that allows developers to write and use Node.js-style modules that compile for use in the browser.[4]

Examples

Execution

$ browserify source.js -o target.js

This adds the source of all the required modules and their dependencies used in source.js and bundles them in target.js. Browserify traverses the dependency graph, using your source.js as its entry point, and includes the source of every dependency it finds.

See also

References