Browserify

Open-source JavaScript tool From Wikipedia, the free encyclopedia

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

DevelopersBrowserling team and Browserify contributors
Initial release9 June 2011; 14 years ago (2011-06-09)[1]
Stable release
17.0.1[2] Edit this on Wikidata / 3 October 2024; 17 months ago (3 October 2024)
Written inJavaScript
Quick facts Developers, Initial release ...
Browserify
DevelopersBrowserling team and Browserify contributors
Initial release9 June 2011; 14 years ago (2011-06-09)[1]
Stable release
17.0.1[2] Edit this on Wikidata / 3 October 2024; 17 months ago (3 October 2024)
Written inJavaScript
Operating systemLinux, macOS, Windows
PlatformNode.js
TypeModule bundler
LicenseMIT License[3][4]
Websitebrowserify.org
Repositorygithub.com/browserify/browserify
Close

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

Related Articles

Wikiwand AI