require-stars

0.0.5 • Public • Published

Require Stars

Build Status

Requires entire directories with one call to require.

How to install

npm install require-stars

How to run the tests

npm test

How to use

Require shallow directory

require('require-stars')();

requrie('./myDir/*');

Require recursivley:

require('./myDir/**');

Enumerate directory exports:

var list = [],
    flat = {};

require('require-stars/enum')(require('./myDir/**'), function (exports, name, path, obj) {
	list.push(exports);
	flat[path] = exports;
}, this);

/require-stars/

    Package Sidebar

    Install

    npm i require-stars

    Weekly Downloads

    1

    Version

    0.0.5

    License

    none

    Last publish

    Collaborators

    • rolandpoulter