0.0.2 • Published 14 years ago
confdir v0.0.2
confdir
handle module specific configurations in their own directory
Installation
npm install confdir or npm install -g confdir
Usage
For example anywhere in a Git repository you could get a reference to the .git
directory:
var confdir = require('confdir');
confdir(__dirname, 'git', function (err, dir) {
if (err)
console.log(err);
else
console.log("The Git files are in " + dir);
});This would print an absolute reference to the .git directory.
confdir is only one method:
confdir(dir, name, callback)
where
diris a reference to a directory, that will be walked up,nameis the name of the configuration directory (without the dot) andcallbackis a callback function that takes two arguments(err, dir).
Bugs and Issues
If you encounter any bugs or issues, feel free to open an issue at github.
License
This package is licensed under the MIT license.