heinzelmannchen-config
v1.0.1
Published
Adapter for heinzlemannchen configuration
Readme
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