mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 02:16:48 +08:00
22 lines
869 B
Markdown
22 lines
869 B
Markdown
# 9.10 Go 的外部包和项目
|
|
|
|
现在我们知道如何使用 Go 以及它的标准库了,但是 Go 的生态要比这大的多。当着手自己的 Go 项目时,最好先查找下是否有些存在的第三方的包或者项目不能使用。大多数可以通过 go install 来进行安装。
|
|
|
|
[Go Walker][https://gowalker.org] 支持根据包名在海量数据中查询。
|
|
|
|
目前已经有许多非常好的外部库,如:
|
|
|
|
- MySQL(GoMySQL), PostgreSQL(go-pgsql), MongoDB (mgo, gomongo), CouchDB (couch-go), ODBC (godbcl), Redis (redis.go) and SQLite3 (gosqlite) database drivers
|
|
- SDL bindings
|
|
- Google's Protocal Buffers(goprotobuf)
|
|
- XML-RPC(go-xmlrpc)
|
|
- Twitter(twitterstream)
|
|
- OAuth libraries(GoAuth)
|
|
|
|
## 链接
|
|
|
|
- [目录](directory.md)
|
|
- 上一节:[通过 git 打包和安装](09.9.md)
|
|
- 下一节:[在 Go 程序中使用外部库](09.11.md)
|
|
|