https://github.com/biotope/biotope-configuration
https://github.com/biotope/biotope-configuration
js json json-configuration
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/biotope/biotope-configuration
- Owner: biotope
- License: mit
- Created: 2017-11-29T07:43:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T15:16:35.000Z (over 3 years ago)
- Last Synced: 2025-08-29T12:50:43.339Z (10 months ago)
- Topics: js, json, json-configuration
- Language: TypeScript
- Size: 992 KB
- Stars: 7
- Watchers: 4
- Forks: 1
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/biotope/biotope-configuration)
[](https://codecov.io/gh/biotope/biotope-configuration)
# Configuration Loader
Keep you runtime configurations in one spot. Load config json files form remote and merge them into the config loaders state.
**Usage**
```javascript
const configuration = await biotope.createConfigurationLoader({foo: 'bar'})
console.log(configuration.getState());
// { foo: 'bar' }
```