https://github.com/launchdarkly/go-configtypes
Golang tools for reading and validating configuration options
https://github.com/launchdarkly/go-configtypes
feature-flags feature-toggles go golang launchdarkly launchdarkly-sdk launchdarkly-sdk-component managed-by-terraform
Last synced: about 23 hours ago
JSON representation
Golang tools for reading and validating configuration options
- Host: GitHub
- URL: https://github.com/launchdarkly/go-configtypes
- Owner: launchdarkly
- License: other
- Created: 2020-07-14T18:43:30.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2026-06-16T06:14:59.000Z (about 1 month ago)
- Last Synced: 2026-06-16T08:17:37.098Z (about 1 month ago)
- Topics: feature-flags, feature-toggles, go, golang, launchdarkly, launchdarkly-sdk, launchdarkly-sdk-component, managed-by-terraform
- Language: Go
- Homepage:
- Size: 87.9 KB
- Stars: 0
- Watchers: 35
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# LaunchDarkly Go Configuration Types
[](https://github.com/launchdarkly/go-configtypes/actions/workflows/ci.yml)
[](https://pkg.go.dev/github.com/launchdarkly/go-configtypes)
This project contains Go types and functions that are meant to simplify and standardize text-based configuration options. There is a basic set of types for strongly typed values with or without validation rules, which can be used with any text parsing code that recognizes the encoding.TextMarshaler interface. The same types can also be read from environment variables in a standard way.
This version of the module supports Go version 1.25 or higher.
For more information, see the package documentation.
## Contributing
We encourage pull requests and other contributions from the community. Check out our [contributing guidelines](CONTRIBUTING.md) for instructions on how to contribute to this project.
## About LaunchDarkly
* LaunchDarkly is a continuous delivery platform that provides feature flags as a service and allows developers to iterate quickly and safely. We allow you to easily flag your features and manage them from the LaunchDarkly dashboard. With LaunchDarkly, you can:
* Roll out a new feature to a subset of your users (like a group of users who opt-in to a beta tester group), gathering feedback and bug reports from real-world use cases.
* Gradually roll out a feature to an increasing percentage of users, and track the effect that the feature has on key metrics (for instance, how likely is a user to complete a purchase if they have feature A versus feature B?).
* Turn off a feature that you realize is causing performance problems in production, without needing to re-deploy, or even restart the application with a changed configuration file.
* Grant access to certain features based on user attributes, like payment plan (eg: users on the ‘gold’ plan get access to more features than users in the ‘silver’ plan). Disable parts of your application to facilitate maintenance, without taking everything offline.
* LaunchDarkly provides feature flag SDKs for a wide variety of languages and technologies. Check out [our documentation](https://docs.launchdarkly.com/docs) for a complete list.
* Explore LaunchDarkly
* [launchdarkly.com](https://www.launchdarkly.com/ "LaunchDarkly Main Website") for more information
* [docs.launchdarkly.com](https://docs.launchdarkly.com/ "LaunchDarkly Documentation") for our documentation and SDK reference guides
* [apidocs.launchdarkly.com](https://apidocs.launchdarkly.com/ "LaunchDarkly API Documentation") for our API documentation
* [blog.launchdarkly.com](https://blog.launchdarkly.com/ "LaunchDarkly Blog Documentation") for the latest product updates
* [Feature Flagging Guide](https://github.com/launchdarkly/featureflags/ "Feature Flagging Guide") for best practices and strategies