export GO111MODULE=”on”

export GOPROXY=”https://mirrors.aliyun.com/goproxy/"

1
2
3
$ make -p ~/project/hello
$ cd ~/project/hello
$ go mod init hello

创建main.go

1
2
3
4
5
6
7
8
9
10
package main

import (
"fmt"
"rsc.io/quote"
)

func main() {
fmt.Println(quote.Hello())
}

执行go build

因为目录下有go.mod文件,如果go命令版本>=1.11,则自动下载依赖模块

1
2
3
4
$ go build
go: finding golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c
go: downloading rsc.io/sampler v1.3.0
go: downloading golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c

go.mod里包含有所有模块的依赖

在执行go build的时候,会根据main.go代码中引入的模块,自动执行go get和修改go.mod文件
也就是说,只需要在代码里引入模块,并不需要再管其他什么事情。

go test 自动生成

https://github.com/cweill/gotests