Require files with wildcards
$ npm install require-files --saveIt returns an array with every file found based on a wildcard string. excludePaths are not required.
const files = require('require-files').get('my/path/**/*.js'); requires all files (without returning) found based on a wildcard string. excludePaths are not required.
require('require-files').only('my/path/**/*.js');