All-around transform for Browserify.
npm install broaderify
The initial motivation comes from the need to inject dependencies into modules that don't import them by themselves - bootstrap 3 for example, and by the flawed approach used by browserify-shim to deal with that problem:
- Pollution of the global scope since browserify-shim is unable to inject dependency in the scope of the dependent module
- Configuration in package.json only - a thing that makes browserify-shim stands apart from every other Browserify transforms and implies having Browserify configuration splits in two different places just because of browserify-shim
Broaderify adopts a very similar strategy to webpack loaders: it allows full source transformation control based on module name filtering.
import * as Browserify from "browserify";
import broaderify from "broaderify";
Browserify()
.transform(broaderify, {
loaders: [{
filter: /foo.js/,
worker: (module, content, done) => {
// do whatever you want with content
done(content);
}
}]
})
.add('index.js');
Read the documentation for more information.
- global: A boolean indicating if broaderify should be applied to node_modules modules.
- loaders: An array of loaders that will be tested against each module passed to broaderify. Each loader must be an object with at least the following properties:
- filter: A RegExp instance that will be tested against the path of the module to determine if it should be transformed.
- worker: A function that will be called for each module that needs transformation, with the following arguments:
- module: The path of the module.
- content: The content of the module - i.e. the source.
- done: A function that needs to be called with the transformed source once the transformation is done.
import * as Browserify from "browserify";
import broaderify from "broaderify";
let bundle = browserify()
.transform(broaderify, {
global: true,
loaders: [{
filter: /node_modules\/bootstrap\/js\/(.*).js/,
worker: (module, content, done) => {
content = 'var jQuery = require(\'jquery\');' + content;
done(content);
}
}]
})
.add('index.js');
Let's take parallax.js jQuery plugin as an example. It is a very good example because it makes the explicit assumption that jQuery is part of the window object:
import * as Browserify from "browserify";
import broaderify from "broaderify";
let bundle = browserify()
.transform(broaderify, {
global: true,
loaders: [{
filter: /node_modules\/parallax-js\/source\/jquery.parallax.js/,
worker: (module, content, done) => {
content = content.replace('window.jQuery || window.Zepto', 'jQuery');
content = 'var jQuery = require(\'jquery\');' + content;
done(content);
}
}]
})
.add('index.js');
- Fork the main repository
- Code
- Implement tests using tape
- Issue a pull request keeping in mind that all pull requests must reference an issue in the issue queue
Apache-2.0 © Eric MORAND