1.0.1 • Published 11 years ago
heinzelmannchen-config v1.0.1
Heinzelmannchen-config
This module handles the configuration of heinzelmannchen
.
It uses rc to obtain the nearest configfile.
Usage
sample config
{
key: 'value',
array: [1, 2, 3],
sub: {
key: 'anOtherValue'
}
}
var config = require('heinzelmannchen-config');
config.get('key'); // value
config.get('sub.key'); // anOtherValue