路线图

资源
看书路线
graph TD
	Go语言中文文档 ==> Go语言圣经 ==> Go语言高级教程 ==> Go语言编译器实现
Go语言中文文档
Go语言圣经
 其他路线:
https://docs.hacknode.org/gopl-zh/
https://books.studygolang.com/gopl-zh/
https://wizardforcel.gitbooks.io/gopl-zh/
https://docs.hundan.org/gopl-zh/
https://book.itsfun.top/gopl-zh/ #每夜自动构建
⏬
Go语言高级编程
 其他路线:
- SUMMARY.md
 - https://chai2010.cn/advanced-go-programming-book/
 - https://www.gitbook.com/book/chai2010/advanced-go-programming-book/
 
github上面一些好的Go项目
插件
- QQ、微信(WeChat)、支付宝(AliPay)的Go版本SDK http://github.com/go-pay/gopay
 - 发送邮件库 https://github.com/go-gomail/gomail
 - 读写Microsoft Excel https://github.com/360EntSecGroup-Skylar/excelize 详细资料
 - 生成uuid https://github.com/satori/go.uuid
 - 开源,分布式,简单高效的搜索引擎 https://github.com/go-ego/riot
 - 基于 Go 的高性能 MySQL Proxy https://github.com/flike/kingshard
 - yaml对Go语言的支持 https://github.com/go-yaml/yaml/tree/v2.2.7
 - Codis是一个分布式Redis解决方案数据库代理 https://github.com/CodisLabs/codis
 - 用Go语言编写的markdown解析器 https://github.com/yuin/goldmark
 
项目
- 基于beego框架的接口在线文档管理系统 https://github.com/lifei6671/mindoc
 - 开源文库系统 https://github.com/truthhun/DocHub
 - Go常用规范定义案例 https://github.com/zc2638/go-standard
 - 开源监控度量的看板系统 https://github.com/zc2638/go-standard
 - go应用开发的调试工具 https://github.com/derekparker/delve
 - 高并发、重量级爬虫软件 https://github.com/henrylee2cn/pholcus
 - Web分析 https://github.com/matomo-org/matomo
 
开发路线
- 先决条件
 - 通用开发技能
- 学习 GIT,在 GitHub 上建立一些仓库,与其它人分享你的代码
 - 了解 HTTP(S) 协议,request 方法(GET, POST, PUT, PATCH, DELETE, OPTIONS)
 - 不要害怕使用 Google,Google 搜索的力量
 - 看一些和数据结构以及算法有关的书籍
 - 学习关于认证的基础实现
 - 面向对象原则等等
 
 - 命令行工具
 - 网页框架 + 路由
 - 数据库
 - 对象关系映射框架
 - 高速缓存
 - 日志
- 日志框架
 - 日志管理系统
 
 - 实时通讯
 - API 客户端
 - 最好知道
 - 测试
 - 任务调度
 - 微服务
 - Go-模式