given the path to a directory containing es6 modules, requires all of their default exports and returns them as an array
npm install import-allimport-all
----------
given the path to a directory containing javascript files, returns an array of
all of their default exports
``javascript${__dirname}/directory
import importAll from 'import-all';
const imports = importAll();``