require-swapper

0.1.7 • Public • Published

browserify-require-swapper

Build Status

Browserify v2 transform to swap CommonJS require call to custom function call

Installation

npm install require-swapper browserify

Usage

Require-swapper swaps all CommonJS require() function calls in your code to specified custom function, or for certain module which matches given target module list.

Example

Suppose you have following index.js and swapping require function to myrequire() for module aaa,

var aaa = require('aaa')
  , bbb = require('./dir1/bbb')
  , ccc = require('./dir2/ccc')
 
module.exports = function() {
  aaa(bbb, ccc);
}

It will output the folowing content to downstream.

var aaa = myrequire('aaa')
  , bbb = require('./dir1/bbb')
  , ccc = require('./dir2/ccc')
 
module.exports = function() {
  aaa(bbb, ccc);
}

As the loading function for module aaa become swapped, browserify worker will not resolve and bundle the module aaa statically. It is anticipated that your custom loader function myrequire would resolve it.

Combining browserify CLI, you can use it like following:

browserify index.js -t [ require-swapper --fn 'myrequire' --module 'aaa'  ] > bundle.js

Options

options.fn

Specify your custom function name to swap require() call.

options.modules

A target module list or glob pattern to swap require(). If the option is not specified, all require() call will be replaced.

Readme

Keywords

none

Package Sidebar

Install

npm i require-swapper

Weekly Downloads

43

Version

0.1.7

License

MIT

Unpacked Size

5.2 kB

Total Files

4

Last publish

Collaborators

  • stomita