legendary-doc-site/apps/core/assets/node_modules/require-dot-file
2020-07-03 21:41:01 -05:00
..
.npmignore chore: Convert to umbrella app 2020-07-03 21:41:01 -05:00
index.js chore: Convert to umbrella app 2020-07-03 21:41:01 -05:00
LICENSE chore: Convert to umbrella app 2020-07-03 21:41:01 -05:00
package.json chore: Convert to umbrella app 2020-07-03 21:41:01 -05:00
README.md chore: Convert to umbrella app 2020-07-03 21:41:01 -05:00

Install

npm install require-dot-file

Usage

This is a simple module used for recursively searching across all parent folders for a file to require.

For example you may want to allow a user to include a dotfile to allow users to configure your project that they can include in their project root.

var
  requireDotFile = require('require-dot-file')
;

// searches for .myconfig in all parent dir recursively (including current dir)
var config = requireDotFile('.myconfig');

// searches for .myconfig file in /path/to/start and its parent dirs
var config = requireDotFile('.myconfig', '/path/to/start');