UNPKG

pip-services3-components-node

Version:
20 lines 888 B
/** * @module config * * Todo: Rewrite this description * * @preferred * Contains implementation of the config design pattern. * * ConfigReader's Parameterize method allows us to take a standard configuration, and, * using a set of current parameters (e.g. environment variables), parameterize it. When * we create the configuration of a container, we can use environment variables to tailor * it to the system, dynamically add addresses, ports, etc. */ export { ConfigReader } from './ConfigReader'; export { FileConfigReader } from './FileConfigReader'; export { IConfigReader } from './IConfigReader'; export { JsonConfigReader } from './JsonConfigReader'; export { MemoryConfigReader } from './MemoryConfigReader'; export { YamlConfigReader } from './YamlConfigReader'; export { DefaultConfigReaderFactory } from './DefaultConfigReaderFactory';