reqdir

0.0.2 • Public • Published

require-directory

Node.js module for require everything in a directory and bind them to a object synchronously. If a file is tried to load with a missing dependency inside the file will load at a second attemp after loading the other files. There are maximum 5 attemps.

Example

Any of the below

 
// Return an object hash.
requireDirectory = require('reqdir');
 
// Load all files in a directory.
myFiles = null;
requireDirectory.loadAll(myFiles, './myPath');
 
// Load all files in a directory and react of return value.
myFiles = null;
if (requireDirectory.loadAll(myFiles, './myPath') === true) {
    console.log('all files loaded without error');
}
 
// Load all files in a directory and call callback on finish.
myFiles = null;
requireDirectory.loadAll(myFiles, './myPath', function() {
    console.log('all files are loaded');
});
 
// Load all files in a directory and call callback for each loaded file.
requireDirectory.loadSeperate('./myPath', function(loadedFile, fileName, readableName) {
    console.log('file "' + fileName + '" loaded');
    loadedFile.doSomething(); // Call a method of loaded module.
});
 

Installation

npm install reqdir

Usage

require('reqdir').load(object, directory, [callback]])

License

MIT

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i reqdir

      Weekly Downloads

      1

      Version

      0.0.2

      License

      none

      Last publish

      Collaborators

      • noXtreme21