broaderify
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

broaderify

NPM version Build Status Coverage percentage

All-around transform for Browserify.

Installation

npm install broaderify

Motivation

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.

Usage

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');

API

Read the documentation for more information.

Configuration options:

  • 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.

Recipes

Injecting jQuery into Bootstrap 3

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');

Injecting jQuery into a jQuery plugin

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');

Contributing

  • 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

License

Apache-2.0 © Eric MORAND

Package Sidebar

Install

npm i broaderify

Weekly Downloads

6

Version

2.0.0

License

Apache-2.0

Unpacked Size

18.7 kB

Total Files

5

Last publish

Collaborators

  • ericmorand