require-swapper
v0.1.7
Published
Swap CommonJS require call to custom function call.
Downloads
381
Readme
browserify-require-swapper
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.