2.1.0 • Published 3 years ago

@adoyle.me/import-modules v2.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

import-modules Build Status

Import all modules in a directory

This module is intentionally simple. Not interested in more features.

Install

$ npm install import-modules

Usage

.
└── directory
    ├── foo-bar.js
    └── baz-faz.js
const importModules = require('import-modules');

const modules = importModules('directory');

console.log(modules);
//=> {fooBar: [Function], bazFaz: [Function]}

API

importModules(directory?, options?)

directory

Type: string Default: __dirname

Directory to import modules from. Unless you've set the fileExtensions option, that means any .js, .json, .node files, in that order. Does not recurse. Ignores the caller file and files starting with . or _.

options

Type: object

camelize

Type: boolean Default: true

Convert dash-style names (foo-bar) and snake-style names (foo_bar) to camel-case (fooBar).

fileExtensions

Type: string[] Default: ['.js', '.json', '.node']

File extensions to look for. Order matters.

Related