NodeConfig
Config library for nodejs, similar to node-config but strongly typed with validated type parsing. No need for Js.Nullable.t shims typical when just binding to js-libs. Configuration data is a JSON Object loaded by a loader function (see below).
Install
npm install @.../node-config
And to bsconfig.json: "bs-dependencies": [..., "@.../node-config", ...],
Usage Examples
Assuming You Write file MyConfig.res:
module C = NodeConfig.Config; /* * loadConfig with default options searches for .json and .yaml files from ./config/ * (loading may produce an error, therefore using getExn, which will throw if loading had errors) */ let config: C.t = C.loadConfig() -> C.getExn;
Usage in other files/modules:
module C = NodeConfig.Config; let config = MyConfig.config; let host: string = C.getString(config, "server.host"); let port: int = C.getInt(config, "server.port"); let flag: bool = C.getBool(config, "featureX"); let factorZ: float = C.getFloat(config, "z.factor"); let strList: list<string> = C.getList(config, "example.abc", C.parseString); let intDict: Js.Dict.t<int> = C.getDict(config, "example.def", C.parseInt); /* Functions above are convenience functions combining a couple of other functions in this library. * These `get*` functions will throw errors if configuration value is not found or is not expected type. * If you wish to handle errors differently it is possible to extract the configuration value as Belt.Result.t */ /* Custom parsing is also supported. This can be useful for mapping heterogenous configuration objects into rescript object types */ type student; let myParser: Js.Json.t => student; /* This you need to provide. Throws errors if cannot convert. */ let confStudent: student = config -> C.key("example.x") -> C.parseCustom(myParser) -> C.getExn;
See src/Config.resi for full list of config value getters.
Config loading
Function C.loadConfig() searches config values from following sources in following order:
- Loads config files from directory defined by
NODE_CONFIG_DIRenv variable if it exists, or otherwise from directoryprocess.cwd() + "/config/":- File
default.{json,yaml}is loaded if it exists - File
${NODE_CONFIG_ENV}.{json,yaml}is loaded if it exists, and if not, then and only then${NODE_ENV}.{json,yaml}is loaded if that exists. - File
local.{json,yaml}is loaded if exists.
- File
- Loads Environment Variables
- Loads
CONFIG_JSONcontents - Reads file
custom-environment-variables.{json,yaml}, which contains ENV variable name override definitions for various config keys (this is identical to: node-config), -> loads overrides from the defined env variables that are found. JSON parsing is attempted to the values of the env variables, enabling e.g. passing lists inside one env variable:MYVAR='["first","second"]'. If the attempted JSON parsing fails, the value is treated as a simple string e.g.MYVAR2="value2"(= simple string. note that json would need extra quotations:"\"value2\"")
- Loads
- Fallback to empty config if nothing from the above exists.