Confidence is intended for use with nodejs v12+ (see v4 for lower support).
Confidence is a configuration document format, an API, and a foundation for A/B testing. The configuration format is designed to work with any existing JSON-based configuration, serving values based on object path ('/a/b/c' translates to a.b.c). In addition, Confidence defines special $-prefixed keys used to filter values for a given criteria.
Example
Below is an example configuring a hapi server using a dynamic Confidence configuration.
The configuration parser used to load the configuration document and apply criteria to get values based on keys.
new Store([document])
Creates an empty configuration storage container where:
document - an optional object containing a confidence configuration object generated from a parsed JSON document.
If the document is invalid, will throw an error. Defaults to {}.
Validates the provided configuration, clears any existing configuration, then loads the configuration where:
document - an object containing a confidence configuration object generated from a parsed JSON document.
If the document is invalid, will throw an error.
Retrieves a value from the configuration document after applying the provided criteria where:
key - the requested key path. All keys must begin with '/'. '/' returns the the entire document.
criteria - optional object used as criteria for applying filters in the configuration document. Defaults to {}.
Returns the value found after applying the criteria. If the key is invalid or not found, returns undefined.
constvalue=store.get('/c',{size: 'big'});
store.meta(key, [criteria])
Retrieves the metadata (if any) from the configuration document after applying the provided criteria where:
key - the requested key path. All keys must begin with '/'. '/' returns the the entire document.
criteria - optional object used as criteria for applying filters in the configuration document. Defaults to {}.
Returns the metadata found after applying the criteria. If the key is invalid or not found, or if no metadata is available, returns undefined.
constvalue=store.meta('/c',{size: 'big'});
Document Format
Confidence builds on top of a plain object as its document.
Basic structure
The configuration document starts with a simple object. Key names can only contain alphanumeric characters and '_' with the '$' prefix reserved
for special directives. Values can contain any non-object value (e.g. strings, numbers, booleans) as well as arrays.
In many scenarios, configuration documents may need to pull values from environment variables. Confidence allows you to refer to environment variables using $env directive.
$coerce directive allows you to coerce values to different types. In case the coercing fails, it falls back to $default directive, if present. Otherwise it return undefined.
A key can have multiple values based on a filter. The filter is a key provided in a criteria object at the time of retrieval. Filter names can only
contain alphanumeric characters and '_'.
When asking for '/key2', if no criteria set is provided or the criteria set does not include a value for the 'env' filter, no value is available. Only when a criteria
set with a key 'env' and value 'production' is provided, the value returned is 1.
Filters can point to a nested value using '.' seperated tokens for accessing child values within the criteria object.
Filters can have a default value which will be used if the provided criteria set does not include a value for the filter or if the value does not match.
Ranges provide a way to filter a value based on numerical buckets. The criteria value must be an integer and be matched against the lowest bucket limit it can fit.
If the criteria includes a value for random.a, that value is matched against the sorted range entries. The criterion value will match the entry with lowest limit it
is still less than or equal the limit of. For example, a criterion value of 5 will return a key value for '/key3' of 4. A criterion value of 15 will return a
key value for '/key3' of 5, and a criterion value of 50 will return a key value for '/key3' of 6.
Metadata
The configuration file can be annotated with metadata that is ignored (and removed) by the parser. Metadata is useful for human readable information as well as to
enable other tools such as configuration editors and validators, going beyond the basic parsing specified here.
If you have values that you would like to share between various configuration objects without duplicating them for each option, you can create a $base object.