injectr
injectr copied to clipboard
Using module.require
According to the node.js manual:
The module.require method provides a way to load a module as if require() was called from the original module.
Note that in order to do this, you must get a reference to the module object. Since require() returns the exports, and the module is typically only available within a specific module's code, it must be explicitly exported in order to be used.
injectr doesn't support this. This isn't a commonly used feature, so implementing it is low priority.