总结一些 Go 在 Github 上的一些热门 Repo

  1. Go dependency management tool
  2. Web frameworks for Go
  3. Beego framework
  4. Gin framework
  5. 社区
  6. 其他
  7. Demo
  8. Books

Go dependency management tool

dep 是 Go 的依赖管理工具。 它需要 Go 1.9 或更新版本才能编译。文档地址,安装方法如下:

1
2
3
4
5
6
7
$ brew install dep
$ brew upgrade dep
# or
$ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh

# or
$ go get -u github.com/golang/dep/cmd/dep

Web frameworks for Go

总结 Go 最热门的框架,时常保持更新,传送门

Beego framework

Go 编程语言的开源,高性能Web框架,用于在 Go 中快速开发 RESTful API,Web 应用程序和后端服务。文档地址

Gin framework

Gin 是一个用 Go(Golang)编写的 HTTP Web 框架。 它具有类似 Martini 的 API,具有更好的性能 - 速度提高了40倍。文档地址

社区

其他

  • 在线运行 Go 程序-play
  • 初步学习教程-golangbot
  • Golang 优秀开源项目汇总 - Repo

Demo

  • 掘金小册,基于 Go 语言构建企业级的 RESTful API 服务 - apiserver

Books