cascade-config
Asynchronous hierarchical config for node.js (env, argv, files, dirs) with inline var substitution and type conversion
Quick Start
cascade-config
works by loading config objects from different sources and merging them together. 7 types of sources are provided:
- JS file: object is loaded using
import-fresh
- directory: a full hierarchy of js files are loaded, reflecting the hierarchy in the loaded object
- env: object is composed from env vars
- envfile: object is loaded from a env file, using
dotenv
- obj: object is explicitly specified
- args: object is composed from command line args
- yaml: YAML files, loaded with
js-yaml
External loaders also exist as separated packages (see below)
The objects are loaded in the order their methods are called, so latter calls take precedence (an object loaded later would overwrite what is already loaded, by merge)
Also, one can specify as many loaders as required, even repeating types (that is, loading from more than one file is perfectly doable)
Let us see a quick example
var CC = require ('cascade-config');
var cconf = new CC();
var defaults = {...};
cconf
.obj (defaults)
.file (__dirname + '/etc/config.js', {ignore_missing: true})
.file (__dirname + '/etc/config-{env}.js', {ignore_missing: true})
.env ({prefix: 'MYAPP_'})
.args ()
.done (function (err, config) {
});
Variable substitution
CC supports using variables already read when calling certain loaders (js file, yaml and directory, for example). A very useful example is to use already-loaded config to specify the path of a file to load:
cconf
.obj ({a:{b:'one'}})
.file (__dirname + '/resources-{a.b}.js')
.yaml (__dirname + '/other-resources-{a.b}.yaml')
.done (function (err, config) {
});
Variable substitution is made with string-interpolation so you can use any modifier allowed by it (defaults, transformations...)
Also, variable 'env' is always available, containing NODE_ENV
. This makes it very simple to load configuration depending on the environment (production, development...):
cconf
.file (__dirname + '/etc/config.js')
.file (__dirname + '/etc/config-{env}.js')
.done (function (err, config) {
});
Variable substitution works also on the loaded objects on each source: what is loaded so far in previous sources is used as source to substitute. Note that the substitution is applied only to the values (not to keys) and only if the value is a string. See an example:
cconf
.env ({prefix: 'APP_'})
.args()
.file (__dirname + '/etc/config.js')
.done (function (err, config) {
});
Notice z.y
is built through 2 substitutions: some.var
is built using B.C.D
, and then z.y is built usint some.var
This works on all source types
Type conversion
Since variable substitution works only for string values, it is useful to have some sort of type conversion mechanism to convert string values into other types. cascade-config does this by looking whether the string begins with a specific prefix:
'#int:'
converts the rest of the string into an int (using parseInt
)'#float:'
converts the rest of the string into a float (using parseFloat
)'#bool:'
converts the rest of the string into a boolean (as in value === 'true'
)'#base64:'
converts the rest of the string into a Buffer
by base64-decoding it
let see an example:
cconf
.obj ({a: 1, b: '2', c: 'true', d: 'SmF2YVNjcmlwdA==', e: 67.89, f:'123.456'})
.obj ({
p1: '#int:{a}',
p2: '#int:{b}',
p3: '#int:{c}',
p4: '#bool:{c}',
p5: '#base64:{d}',
p6: '#float:{e}',
p7: '#float:{f}'
})
.done (function (err, config) {
});
API
-
.obj(object)
: loads and merges an object, verbatim. USeful to provide defaults (if loaded first) or overrides (if loaded last)
-
.env(opts)
: loads and merges an object composed with env vars. opts
can be passed to control what env vars to pick:
-
.args(opts)
: loads and merges an object composed with the command line args passed (parsed by minimist
). As in the case of env()
all occurrences of __
are converted to .
, so one can use either to specify hierarchy
cconf.args().done (function (err, config) {
});
cconf.args({prefix: 'some.'}).done (function (err, config) {
});
Allowed options are:
input
: a string that would be used as source for minimist instead of process.argv.slice(2)
prefix: str
: selects all vars with name starting with str
, and removes the prefix before adding it to the objectregexp: regex
: selects all vars whose name matches regex
-
.file(filename, opts)
: loads object from a javascript file. filename
supports variable substitution. Options are:
ignore_missing
: if truish, just return an empty object if the file can not be read; if false, raise an error. Defaults to false
-
.envfile(filename, opts)
: loads object from an envfile. filename
supports variable substitution. Options are:
ignore_missing
: if truish, just return an empty object if the file can not be read; if false, raise an error. Defaults to falseprefix: str
: selects all vars with name starting with str
, and removes the prefix before adding it to the objectregexp: regex
: selects all vars whose name matches regex
-
.directory(opts)
: loads a single object composed by an entire file hierarchy. Only js and json files are considered, and the resulting object reflects the relative path of the file. That is, a file a/b/c.js
containing {n:1, b:6}
would produce {a: {b: {c: {n: 1, b: 6}}}}
. Also, dots in file or dir names are changed into _
. Options are:
files
: base dir to read files from. defaults to __dirname + '/etc'
, and supports variable substitution
-
.yaml(filename, opts)
: loads object from a YAML file. filename
supports variable substitution. Options are:
ignore_missing
: if truish, just return an empty object if the file can not be read; if false, raise an error. Defaults to false
Extended API
The api exposed so far provides a simple, plain JS object with all the config; this is usually more than enough, but for more complex use cases -where advanced config management is needed- a more powerful interface is provided
This extender interface is selected by simply passing {extended: true}
as second param of .done()
:
cconf
.args({prefix: 'some.'})
...
.done (function (err, config) {
...
}, {extended: true}
);
In this case config
is no longer a plain object containing the config, but an interface to it with the following methods:
config()
: returns the plain config object (as in the standard interface)get()
: gets a value or slice from the config. Uses the same interface, and has the same logic than lodash's _.get(obj, ...)
set()
: sets a value or slice in the config. Uses the same interface, and has the same logic than lodash's _.set(obj, ...)
unset()
: unsets a value or slice in the config. Uses the same interface, and has the same logic than lodash's _.unset(obj, ...)
reload (cb)
: rereads all config again, as if you called done()
. It has, in fact, the same interfaceonChange(fn)
: registers a function to be called every the the config is changed (by calling set()
, unset()
or reload()
). Teh function will be called every time the config is changed, with the following params:
function (path)
: where path
is the path of the change within the configuration, or null if unknown or affects all the config
Note: the object returned by config()
is mutable, but the object reference itself does not change: if you save it for later, you can read the new config in it after any change, reload()
included, as expected
External loaders
There are external packages that add loaders to cascade-config
, thus allowing to read config from other type of sources: