Conf5() for Node.js
Configuration manager module, used inside some of the nodejs #fifty5 projects.
Installation
This package is available on [npm][npm-url] as: conf5
npm install conf5
Usage
Example:
var Conf5 = require('conf5');
var conf = new Conf5();
conf.loadConf();
var a = conf.get("a.b.c");
conf.set("x.y.z", 123);
conf.extendConfFromFile("./test.json");