Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

conf5

cmf535Apache-2.00.0.6

Configuration Manager

readme

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");