Installing the SDK

To integrate the VWO Feature Management and Experimentation SDK into your Go project, you can use Go modules to install it directly from GitHub.

Requirements

  • Go version 1.16 or higher

Installation

Run the following command in your project directory:

go get github.com/wingify/vwo-fme-go-sdk

This command will download and install the VWO FME SDK and its dependencies in your project.
Import the SDK

After installation, you can import the SDK in your Go files:

import vwo "github.com/wingify/vwo-fme-go-sdk"

Now, you're ready to initialize and use the SDK in your Go application.

Please note that the Go SDK requires the use of a Gateway Service. Make sure to set up the Gateway Service before initializing the SDK. For more information, see our Gateway Service documentation.


What’s Next