1.0.0 • Published 4 years ago

ya-require-dir v1.0.0

Weekly downloads
895
License
MIT
Repository
github
Last release
4 years ago

ya-require-dir

Build Status npm version

Super simple to use

A helper to require() one directory recursively with no configuration params.

Installation

npm install ya-require-dir

Usage

There is only one param(default: '.') you would concern: the directory path.

let requireDir = require("ya-require-dir");
let dir = requireDir("./somewhere");

Given this directory structure:

dir
+ a.js
+ b.json
+ c
  +c-1.js
  +.dumb.js
+ d.txt

requireDir('./dir') will return the equivalent of:

{
  a: require('./dir/a.js'),
  b: require('./dir/b.json'),
  c: {
    c-1: require('./dir/c/c-1.js')
  }
}