Article · Wikipedia archive · Last revised Jul 9, 2026

Browserify

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.

Last revised
Jul 9, 2026
Read time
≈ 1 min
Length
140 w
Citations
5
Source
Browserify
DevelopersBrowserling team and Browserify contributors
Release9 June 2011 (2011-06-09)1
Stable release
17.0.12 Edit this on Wikidata / 3 October 2024 (3 October 2024)
Written inJavaScript
Operating systemLinux, macOS, Windows
PlatformNode.js
TypeModule bundler
LicenseMIT License34
Websitebrowserify.org
Repositorygithub.com/browserify/browserify

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

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

See also

References

References

  1. "Release Date of Version 1.0.0". Retrieved 2020-12-31.
  2. "Release 17.0.1". 3 October 2024. Retrieved 21 October 2024.
  3. "LICENSE file on GitHub". Retrieved 2020-12-31.
  4. "License field from browserify - npm". Retrieved 2020-12-31.
  5. "NPM, Browserify, and modules". Retrieved 24 Dec 2014.