Skip to content

ConfigCat SDK for Go. ConfigCat is a hosted feature flag service: https://configcat.com. Manage feature toggles across frontend, backend, mobile, desktop apps. Alternative to LaunchDarkly. Management app + feature flag SDKs.

License

Notifications You must be signed in to change notification settings

configcat/go-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e6635a9 · Aug 8, 2024
Apr 11, 2024
Dec 7, 2023
Apr 11, 2024
Sep 24, 2021
Apr 11, 2024
Dec 9, 2023
Jan 13, 2020
Dec 7, 2023
Jul 24, 2023
Sep 8, 2023
May 13, 2021
Apr 9, 2020
Jan 12, 2021
Apr 11, 2024
Jul 24, 2023
Dec 17, 2023
Apr 11, 2024
Dec 17, 2023
Dec 17, 2023
Apr 11, 2024
Dec 17, 2023
Apr 11, 2024
Apr 11, 2024
Apr 11, 2024
Dec 7, 2023
Dec 9, 2023
Dec 11, 2023
Apr 11, 2024
Apr 11, 2024
Dec 17, 2023
Dec 17, 2023
Aug 8, 2024
Aug 8, 2024
Dec 17, 2023
Dec 20, 2023
Jul 24, 2023
Apr 11, 2024
Dec 9, 2023
Apr 11, 2024
Apr 11, 2024
Dec 7, 2023
Apr 11, 2024
Dec 7, 2023
Apr 11, 2024
Aug 8, 2024
Jul 24, 2023

Repository files navigation

ConfigCat SDK for Go

https://configcat.com

ConfigCat SDK for Go provides easy integration for your application to ConfigCat.

ConfigCat is a feature flag and configuration management service that lets you separate releases from deployments. You can turn your features ON/OFF using ConfigCat Dashboard even after they are deployed. ConfigCat lets you target specific groups of users based on region, email or any other custom user attribute.

ConfigCat is a hosted feature flag service. Manage feature toggles across frontend, backend, mobile, desktop apps. Alternative to LaunchDarkly. Management app + feature flag SDKs.

Build Status Go Report Card GoDoc Sonar Coverage Sonar Quality Gate

Getting started

1. Install the package with go

go get github.com/configcat/go-sdk/v9

2. Go to the ConfigCat Dashboard to get your SDK Key:

SDK-KEY

3. Import the ConfigCat client package to your application

import "github.com/configcat/go-sdk/v9"

4. Create a ConfigCat client instance:

client := configcat.NewClient("#YOUR-SDK-KEY#")

5. Get your setting value:

isMyAwesomeFeatureEnabled := client.GetBoolValue("isMyAwesomeFeatureEnabled", false, nil)
if isMyAwesomeFeatureEnabled {
    DoTheNewThing()
} else {
    DoTheOldThing()
}

6. Close ConfigCat client on application exit:

client.Close()

Getting user specific setting values with Targeting

Using this feature, you will be able to get different setting values for different users in your application by passing a UserData struct to the specific setting evaluation method (GetBoolValue(), GetStringValue(), GetIntValue(), GetFloatValue()).

Read more about Targeting here.

user := &configcat.UserData{Identifier: "#USER-IDENTIFIER#"}

isMyAwesomeFeatureEnabled := client.GetBoolValue("isMyAwesomeFeatureEnabled", false, user)
if isMyAwesomeFeatureEnabled {
    DoTheNewThing()
} else {
    DoTheOldThing()
}

Polling Modes

The ConfigCat SDK supports 3 different polling mechanisms to acquire the setting values from ConfigCat. After latest setting values are downloaded, they are stored in the internal cache then all requests are served from there. Read more about Polling Modes and how to use them at ConfigCat Docs.

Need help?

https://configcat.com/support

Contributing

Contributions are welcome. For more info please read the Contribution Guideline.

About ConfigCat