golang 扩展package 列表

Psyche ·
更新时间:2024-09-20
· 618 次阅读

Golang 扩展package

golang 扩展package 列表

https://github.com/golang/arch.git
https://github.com/golang/playground.git
https://github.com/golang/debug.git
https://github.com/golang/term.git
https://github.com/golang/time.git
https://github.com/golang/scratch.git
https://github.com/golang/talks.git
https://github.com/golang/geo.git
https://github.com/golang/freetype.git
https://github.com/golang/cwg.git
https://github.com/golang/leveldb.git
https://github.com/golang/blog.git
https://github.com/golang/net.git
https://github.com/golang/tools.git
https://github.com/golang/protobuf.git
https://github.com/golang/sys.git
https://github.com/golang/exp.git
https://github.com/golang/mock.git
https://github.com/golang/crypto.git
https://github.com/golang/sync.git
https://github.com/golang/text.git
https://github.com/golang/mobile.git
https://github.com/golang/oauth2.git
https://github.com/golang/dl.git
https://github.com/golang/perf.git
https://github.com/golang/image.git
https://github.com/golang/mod.git
https://github.com/golang/proposal.git
https://github.com/golang/glog.git
https://github.com/golang/xerrors.git

Best practice

通常笔者比较喜欢把golang 扩展包的代码放在golang 的源代码包, 这样在使用的过程很方便查看golang 代码以及扩展代码(官方代码)

在golang 的安装目录的 src 目录下面创建目录 “golang.org/x” 进入上面的新创建的目录, 把上面的golang 扩展列表拷贝下来保持成文件,例如 list.txt 笔者在 powershell 的环境下, 采用命令如下: type .\list.txt | % { git clone $_ ; } Linux 环境下应该是: cat ./list.txt | xargs git clone

有帮助/价值请打赏:

在这里插入图片描述


作者:free2o



列表 package golang

需要 登录 后方可回复, 如果你还没有账号请 注册新账号