import-all
Given the path to a directory containing JavaScript files, returns an object containing all of their default and named exports with the module names as keys.
Installation
$ npm install --save @briansolon/import-all
Usage
import importAll from 'import-all'
const imports = importAll(`${__dirname}/directory`)
Credits
Uses code from charlieschwabacher/import-all and sindresorhus/import-modules.