@cladeco/import-all
v1.0.2
Published
Given the path to a directory containing ES6 modules, requires all of their default and named exports and returns them as an object
Downloads
6
Readme
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 @cladeco/import-all
Usage
import importAll from 'import-all'
const imports = importAll(`${__dirname}/directory`)
Credits
Uses code from charlieschwabacher/import-all and sindresorhus/import-modules.