0.1.0 • Published 13 years ago

loadit v0.1.0

Weekly downloads
3
License
-
Repository
github
Last release
13 years ago

loadit

Asynchronously loads (requires) all files in the given directory and all recursive subdirectories that match the given regular expression.

Note: the given directory must not end with a slash.

Install

npm install loadit

Example 1

var loadit = require('loadit'),
    regexp = /.js$/i; /* all files ending with .js (not case sensitive)

loadit.load(__dirname + '/routines', regexp, function(err, files) {
    if (err) throw new Error('Failed loading routines: ' + err);
    
    console.log('loaded new routines: %a', files);
});