├── .gitignore ├── .travis.yml ├── Changes.md ├── LICENSE ├── Readme.md ├── index.js ├── package.json └── test ├── controllers ├── .hidden │ └── stuff.js ├── main-Controller.js ├── notthis.js ├── other-Controller.js ├── sub-dir │ └── other-Controller.js └── unrelated │ └── foo.txt ├── filterdir ├── .svn │ └── stuff.js ├── root.js └── sub │ └── hello.js ├── mydir ├── .stuff.js ├── foo.js ├── hello.js └── sub │ ├── config.json │ ├── no.2js │ └── yes.js ├── resolved ├── onearg.js └── twoargs.js └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.un~ 2 | node_modules/ 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/Changes.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/Readme.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/package.json -------------------------------------------------------------------------------- /test/controllers/.hidden/stuff.js: -------------------------------------------------------------------------------- 1 | module.exports = { gute: 'nacht' }; 2 | -------------------------------------------------------------------------------- /test/controllers/main-Controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/test/controllers/main-Controller.js -------------------------------------------------------------------------------- /test/controllers/notthis.js: -------------------------------------------------------------------------------- 1 | exports.yes = 'no'; 2 | -------------------------------------------------------------------------------- /test/controllers/other-Controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/test/controllers/other-Controller.js -------------------------------------------------------------------------------- /test/controllers/sub-dir/other-Controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/test/controllers/sub-dir/other-Controller.js -------------------------------------------------------------------------------- /test/controllers/unrelated/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/filterdir/.svn/stuff.js: -------------------------------------------------------------------------------- 1 | module.exports = { gute: 'nacht' }; 2 | -------------------------------------------------------------------------------- /test/filterdir/root.js: -------------------------------------------------------------------------------- 1 | module.exports = { guten: 'tag' }; 2 | -------------------------------------------------------------------------------- /test/filterdir/sub/hello.js: -------------------------------------------------------------------------------- 1 | module.exports = { guten: 'abend' }; 2 | -------------------------------------------------------------------------------- /test/mydir/.stuff.js: -------------------------------------------------------------------------------- 1 | module.exports = { gute: 'nacht' }; 2 | -------------------------------------------------------------------------------- /test/mydir/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = 'bar'; 2 | -------------------------------------------------------------------------------- /test/mydir/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/test/mydir/hello.js -------------------------------------------------------------------------------- /test/mydir/sub/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/test/mydir/sub/config.json -------------------------------------------------------------------------------- /test/mydir/sub/no.2js: -------------------------------------------------------------------------------- 1 | module.exports = true; 2 | -------------------------------------------------------------------------------- /test/mydir/sub/yes.js: -------------------------------------------------------------------------------- 1 | module.exports = true; 2 | -------------------------------------------------------------------------------- /test/resolved/onearg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/test/resolved/onearg.js -------------------------------------------------------------------------------- /test/resolved/twoargs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/test/resolved/twoargs.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-require-all/HEAD/test/test.js --------------------------------------------------------------------------------