Go Tools
- offcial golang.org/x/tools/cmd
- bundle, callgraph, digraph, godex, godoc, guru, ssadump
- eg, gomvpkg, gorename
# gofumpt 增强版 go fmt
go install mvdan.cc/gofumpt@latest
# goimports 排序 imports
go install golang.org/x/tools/cmd/goimports@latest
# stringer
# 为 enum/const 生成 String 方法
go install golang.org/x/tools/cmd/stringer@latest
# gomodifytags
# 为 struct 生成 json, yaml tag
go install github.com/fatih/gomodifytags@latest
gomodifytags -file dto.go -struct Server -add-tags json -add-options json=omitempty -transform camelcase --skip-unexported
# gowrap
# 为 interface 生成 实现 - 修饰模式
go install github.com/hexdigest/gowrap/cmd/gowrap@latest
# gopls for VSCode
go install golang.org/x/tools/gopls@latest
- go 1.25+ 支持 tool 管理
go.mod
toolchain go1.21.0
tool golang.org/x/tools/cmd/stringer
目前 go.mod 里添加 tool 可能会影响项目依赖,建议额外开个 tools.mod 管理工具依赖
go tool -modfile=tools.mod stringer