1. Go
  2. Tutorial

Create Project

Create a new directory anywhere you’d like for this project:

mkdir kafka-go-getting-started && cd kafka-go-getting-started

Initialize the Go module and download the Confluent Go Kafka dependency:

go mod init kafka-go-getting-started
go get github.com/confluentinc/confluent-kafka-go/v2/kafka
Previous
Prerequisites