Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 606 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 606 Bytes

Build Status codecov

Configuration Loader

Keep you runtime configurations in one spot. Load config json files form remote and merge them into the config loaders state.

Usage

const configuration = await biotope.createConfigurationLoader({foo: 'bar'})

console.log(configuration.getState());
// { foo: 'bar' }