rwin
v1.1.8
Published
Require When I Need is a Node.js module loader that loads the required module when you need it.
Downloads
13
Readme
rwin
Node.js module loader that loads the required module when you need it.
This Node.js module is under MIT License.
Install :
$ npm install rwin
Concept :
Because some of the required modules are sometimes loaded and uses your memory for nothing...
rwin (Require When I Need), is a lightweight tool that loads the required module only when and if you need it!
Usage :
var rwin, lib;
rwin = require('rwin');
lib = rwin(__dirname, {
installedModule: 'installed-module',
uninstalledModule: '/uninstalled-module/path'
});
// At this point, rwin is the only one loaded module (and its own dependencies)
console.log(lib.installedModule); // loads the module & returns it to the console