Software:Browserify
From HandWiki
Short description: Open-source JavaScript tool
Developer(s) | Browserling team and Browserify contributors |
---|---|
Initial release | 9 June 2011[1] |
Repository | github |
Written in | JavaScript |
Operating system | Linux, macOS, Windows |
Platform | Node.js |
License | MIT License[2][3] |
Website | browserify |
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
- ↑ "Release Date of Version 1.0.0". https://libraries.io/npm/browserify/versions.
- ↑ "LICENSE file on GitHub". https://github.com/browserify/browserify/blob/master/LICENSE.
- ↑ "License field from browserify - npm". https://www.npmjs.com/package/browserify.
- ↑ "NPM, Browserify, and modules". https://ampersandjs.com/learn/npm-browserify-and-modules. Retrieved 24 Dec 2014.
Original source: https://en.wikipedia.org/wiki/Browserify.
Read more |