1.0.1 • Published 10 years ago

heinzelmannchen-config v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

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