UNPKG

import-all-index

Version:

Uses dynamic import() to recursively loop through a directory tree, import all index.mjs files and return an array of references to the imported modules

23 lines (17 loc) 777 B
# import-all-index Uses dynamic import() to recursively loop through a directory tree, import all index.js or index.mjs files and return an array of references to the imported modules Requires esm package or Node 12. ### Usage: ```js import path from 'path' import importAllIndex from 'import-all-index' export default async server => { let absolutePath = import.meta.url.replace('file://', '') let apiRoutes = await importAllIndex(path.resolve(absolutePath, '../folder_to_import')) apiRoutes.forEach(importedModule => { if (importedModule.default && typeof importedModule.default === 'function') { importedModule.default(server) // runs all imported defaults that are functions injecting the server object provided to the parent function } }) } ```