TypeConf is a typesafe hierarchical configuration manager for Node.js.
With TypeConf it's easy to retrieve typed configuration values from different sources:
import TypeConf = require('typeconf');
const conf = new TypeConf()
.withFile('./conf.json');
.withEnv();
const port = conf.getNumber('port');
const secret = conf.getString('secret');
TypeConf supports different storage backends for configuration values:
- withArgv() Command line arguments
- withEnv(prefix?: string) Environment variables
- withFile(file: string) JSON or YAML files
- withStore(store: object, name?: string) JavaScript object
- withSupplier(supplier: (key: string) => any, name?: string) Supplier function
- set(key: string, value: any) Override a value
Backends are queried for existing values in the reverse order that they were added. For example:
const conf = new TypeConf()
.withFile('./conf.json');
.withEnv()
.withArgv();
const example = conf.get('example');
In this case TypeConf will check for existing values in the following order:
- A command line argument
--example
- An evironment variable
EXAMPLE
- An configuration file entry
"example": ...
TypeConf can extract nested object properties from environment varibles:
const conf = new TypeConf()
.withStore({
example: {
test: 'test'
}
})
.withEnv();
This example configuration uses a static object store and environment variables. In order to add or override properties on the example
object we can do the following:
export EXAMPLE__TEST="override"
export EXAMPLE__OTHER="another property"
By default, TypeConf uses two "underline" characters (__
) as a separator. We can even define completely new objects using this method:
export ANOTHER__A="property A"
export ANOTHER__B__C="property b.c"
const another = conf.getObject('another');
another === {
a: 'property A',
b: { c: 'property b.c' }
}
Get a raw value.
Get a value that is transformed by the supplied function.
Get an existing value as a string (using JSON.stringify
if necessary) or return an optional fallback string. Throws TypeError if fallback
is defined but not a string.
Get an existing value as a number (using parseFloat
if necessary) or return an optional fallback number. Throws TypeError if an existing value cannot be interpreted as a number or if fallback
is defined but not a number.
Get a value as a boolean. An existing value is always interpreted as true
unless it is false
or "false"
. A non-existing value is always interpreted as false
.
Get an existing value as an object (using JSON.parse
if necessary) or return an optional fallback object. Throws TypeError if an existing value cannot be interpreted as an object or if fallback
is defined but not an object.
Get an existing value as an instance of type T
(by passing the raw value as the only argument to the constructor) or return an optional fallback value of the same type. Throws TypeError if an error occurs during the instantiation of type T
(constructors should validate the raw configuration value).