|
преди 5 години | |
---|---|---|
.. | ||
.npmignore | преди 5 години | |
LICENSE | преди 5 години | |
README.md | преди 5 години | |
index.js | преди 5 години | |
package.json | преди 5 години |
npm install require-dot-file
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');