The fastest Go Proxy on the internet built with Workers on Cloudflare's Network.

Using this service for CI/CD can help speed up your deployments.

Stats

cached
239 Cached
downloads
254 Uncached

Instructions

Based on your environment you will need to run one of the below set of commands. After you do that, all your Go Modules will be downloaded from GoProxy.dev.

Go version >= 1.13

go env -w GO111MODULE=on
go env -w GOPROXY="https://goproxy.dev,direct"

Go version <= 1.12

# Enable the go modules feature
export GO111MODULE="on"

# Set the GOPROXY environment variable
export GOPROXY="https://goproxy.dev"

PowerShell (Windows)

# Enable the go modules feature
$env:GO111MODULE="on"

# Set the GOPROXY environment variable
$env:GOPROXY="https://goproxy.dev"