This library manages properties and secrets from multiple sources, giving users a unified API for loading type safe system, environment, classpath and file based properties while also deciding which source takes precedence and how often the values should be refreshed.
The repository hosts a number of projects:
props-core
: the core logic of the project, has not third-party dependencies and it is self-containedprops-aws
: aSource
backed byAWS Secrets Manager
props-mongodb
: aSource
backed by a MongoDB database collection
- Access values once or repeatedly
- Fast reads (values are cached until changed)
- Events triggered when values change
- Small core module with no third-party dependencies
- Built with thread-safety in mind
- Deterministic source precedence
Please see the contributor guide.
Copyright (c) 2021-2022 Mihai Bojin
Licensed under the MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.