brigadedeprecated

Bucket brigade for bundling browser modules

Usage no npm install needed!

<script type="module">
  import brigade from 'https://cdn.skypack.dev/brigade';
</script>

README

Brigade

Brigade flexibly and efficiently bundles CommonJS modules for delivery to a web browser by

  1. supporting a declarative syntax for organizing sets of modules,
  2. using promises to manage an asynchronous bundling pipeline, and
  3. never rebuilding bundles that have already been built.

The output can be conveniently consumed not only by other node.js modules but also by external programs. Bundles produced by the build process are collected in a single directory that can be used by any static file server, or easily uploaded to a CDN for serving production traffic.

Installation

From NPM:

npm install brigade

From GitHub:

git clone git://github.com/benjamn/brigade.git
cd brigade
npm link .

Input

To use brigade you should first create a JSON file in the root directory of your CommonJS module tree. The name of the file is not important, so let's just pretend it's called schema.json. It should contain a nested object literal where all the keys are module identifier strings (which may or may not correspond to actual file paths):

{
    "core": {
        "third-party": {
            "login": {
                "tests/login": {}
            },
            "home": {
                "tests/home": {}
            },
            "settings": {
                "tests/settings": {}
            }
        }
    },
    "widget/common": {
        "widget/follow": {},
        "widget/gallery": {},
        "widget/share": {}
    },
    "widget/share": {}
}

This object expresses a tree of possible bundle sequences. A bundle is simply a set of CommonJS modules, so, as you might imagine, a "bundle sequence" is an ordered list of sets of modules.

Given the example tree above, you might have a /settings page that uses the following sequence of bundles:

  1. core (+ any dependencies and a small module loader)
  2. third-party (+ dependencies not in core)
  3. settings (+ dependencies not in core or third-party)
  4. tests/settings (+ dependencies not in core, third-party, or settings)

There is no overlap between the modules in a given sequence of bundles, since any given module can appear at most once in at most one bundle in the sequence.

Each bundle in the sequence corresponds to a separate JavaScript file. The first bundle (here, "core" plus its dependencies) must be evaluated first, as it contains a small amount of boilerplate code for loading modules. The rest of the bundles ought to be evaluated in order, too, although any suffix of the sequence can be dropped. For instance, you could omit "tests/settings" in production.

Since two examples are much better than one, you might also have a sharing widget that requires only two bundles:

  1. widget/common
  2. widget/share

The separation is useful if "widget/common" is relatively unchanging and you want it to be cached separately. Alternatively, you might value the simplicity of having only one JS file to include, in which case you could promote "widget/share" to the top level of the schema, in order to bundle it (and all of its dependencies) into one monolithic file.

This tradeoff demonstrates the path-dependency of bundles: including "widget/share" after "widget/common" is potentially different from just including "widget/share", so the actual JS file names corresponding to these two versions of "widget/share" may differ.

Output

Now that you have a schema file, all that's left is to point the bin/brigade command at it:

bin/brigade --schema path/to/schema.json --output-dir path/to/output/dir

This command will populate path/to/output/dir with JS bundle files whose names are hashes computed from the source files they contain, and any transformation steps that were applied. Because the hash is a pure function of the input, the command can avoid rebuilding bundles that have already been built.

When the build process finishes, the bin/brigade command prints a tree of JSON to STDOUT. For example:

{ "core": {
    "file": "61a2d165baf797cefeb374a010ad3d15ffa73a09.js",
    "then": {
      "third-party": {
        "file": "3c8bcc25cdf32024868707259892abcdd89f0dcc.js",
        "then": {
          "login": {
            "file": "f3b9440dfe8a5bc1796792ce736478ac0afc74d5.js",
            "then": {
              "tests/login": {
                "file": "76bfa5a904beec3d69a3f942d7e534bfaaad8b4d.js" }}},
          "home": {
            "file": "687016a47bd21ccf520418d25f954a7807b161ab.js",
            "then": {
              "tests/home": {
                "file": "925557fc996df73a4aac46266ba7c3fb90b0c530.js" }}},
          "settings": {
            "file": "9203cfa9f05aa7355a8b9779229b70c580881c94.js",
            "then": {
              "tests/settings": {
                "file": "e77654d2f995cde56c3c1859fa967e3471b0f122.js" }}}}}}},
  "widget/common": {
    "file": "6bcb66751c26c485978a06a4d23f3fcb8655eb04.js",
    "then": {
      "widget/follow": {
        "file": "baedf19657edde944e32f8273e5ac7bc9f887fe5.js" },
      "widget/gallery": {
        "file": "192bbd2125958aa5c58c1d5aca72484d339558f8.js" },
      "widget/share": {
        "file": "bd24e1167130b09c29db212ffd31d73e0f03987e.js" }}},
  "widget/share": {
    "file": "8627eba2e11991cc42ba30352c6f81032b3d9e2d.js" }}

Although this may look like a wall of text, it has a very regular structure that is easy to manipulate with code. The value associated with each key of the schema has been replaced with an object literal that has a "file" property and, if the bundle has any descendants, a "then" property that refers to its child properties.

If you were to parse this JSON and store the resulting object in a variable called tree, you could refer to the settings bundle from the first example as tree.core.then["third-party"].then.settings.file.

Likewise, you could refer to "widget/share" in two different ways:

  • tree["widget/common"].then["widget/share"].file or
  • tree["widget/share"].file

If you run the bin/bridgade command again without changing anything, the output will be the same, but the command will run much more quickly, because it notices when a file with a specific name already exists.

The rest is up to you!