reference.ts 3.6 KB
Newer Older
X
xjh22222228 已提交
1 2 3 4
export default {
  title: '参考资料',
  nav: [
    {
X
xjh22222228 已提交
5
      subtitle: '书籍',
X
xjh22222228 已提交
6 7 8
      nav: [
        {
          icon: 'https://avatars1.githubusercontent.com/u/4314092?s=200&v=4',
X
xjh22222228 已提交
9
          name: 'Go 入门指南',
X
xjh22222228 已提交
10 11 12 13 14 15 16 17 18 19 20
          desc: '《The Way to Go》中文译本,中文正式名《Go 入门指南》',
          link: 'https://github.com/unknwon/the-way-to-go_ZH_CN/blob/master/eBook/directory.md',
        },
        {
          icon: 'https://avatars1.githubusercontent.com/u/4314092?s=200&v=4',
          name: 'Go语言圣经',
          desc: 'Go语言圣经 《The Go Programming Language》 中文版本',
          link: 'https://yar999.gitbook.io/gopl-zh/',
        },
        {
          icon: 'https://avatars1.githubusercontent.com/u/4314092?s=200&v=4',
X
xjh22222228 已提交
21
          name: 'Go WEB 编程',
X
xjh22222228 已提交
22 23 24 25 26
          desc: 'Golang电子书介绍如何使用Golang建立网络',
          link: 'https://github.com/astaxie/build-web-application-with-golang/blob/master/zh/preface.md',
        },
        {
          icon: 'https://avatars1.githubusercontent.com/u/4314092?s=200&v=4',
X
xjh22222228 已提交
27 28 29
          name: 'Go简易教程',
          desc: '《The Little Go Book》中文译本,中文正式名《Go简易教程》',
          link: 'https://github.com/songleo/the-little-go-book_ZH_CN',
X
xjh22222228 已提交
30 31 32
        },
        {
          icon: 'https://avatars1.githubusercontent.com/u/4314092?s=200&v=4',
X
xjh22222228 已提交
33 34 35
          name: 'Go by Example 中文版',
          desc: 'Go by Example 是对 Go 基于实践的介绍,包含一系列带有注释说明的示例程序。',
          link: 'https://gobyexample-cn.github.io/',
X
xjh22222228 已提交
36 37 38 39 40 41 42
        },
        {
          icon: 'https://avatars1.githubusercontent.com/u/4314092?s=200&v=4',
          name: 'Go语言之旅',
          desc: '本指南涵盖了该语言的大部分重要特性,主要包括:基础、方法和接口、并发等',
          link: 'https://tour.go-zh.org/welcome/1',
        },
X
xjh22222228 已提交
43 44 45 46 47 48
        {
          icon: 'https://avatars1.githubusercontent.com/u/4314092?s=200&v=4',
          name: 'Go语言高级编程',
          desc: '本书涵盖CGO、Go汇编语言、RPC实现、Web框架实现、分布式系统等高阶主题,针对Go语言有一定经验想深入了解Go语言各种高级用法的开发人员(不推荐新手)',
          link: 'https://chai2010.cn/advanced-go-programming-book/',
        },
X
xjh22222228 已提交
49 50 51 52 53 54 55 56 57 58 59
      ]
    },
    {
      subtitle: '其他',
      nav: [
        {
          icon: 'https://avatars1.githubusercontent.com/u/4314092?s=200&v=4',
          name: '100天从新手到大师',
          desc: 'Golang - 100天从新手到大师',
          link: 'https://github.com/rubyhan1314/Golang-100-Days',
        },
X
xjh22222228 已提交
60 61 62 63 64 65
        {
          icon: 'https://avatars1.githubusercontent.com/u/4314092?s=200&v=4',
          name: 'project-layout',
          desc: 'Go标准布局结构,项目架构结构参考。',
          link: 'https://github.com/golang-standards/project-layout/blob/master/README_zh.md',
        },
X
xjh22222228 已提交
66 67 68 69 70 71 72 73 74 75
        {
          icon: 'https://avatars1.githubusercontent.com/u/4314092?s=200&v=4',
          name: '编码规范',
          desc: 'Uber Go 语言编码规范',
          link: 'https://github.com/xxjwxc/uber_go_guide_cn',
          language: [
            'https://github.com/uber-go/guide/blob/master/style.md',
            'https://github.com/xxjwxc/uber_go_guide_cn'
          ]
        },
X
xjh22222228 已提交
76 77
        {
          icon: 'https://avatars1.githubusercontent.com/u/4314092?s=200&v=4',
X
xjh22222228 已提交
78 79 80
          name: 'Gin实战',
          desc: 'WEB 框架Gin实战',
          link: 'https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzI3MjU4Njk3Ng==&action=getalbum&album_id=1362784031968149504&scene=173#wechat_redirect',
X
xjh22222228 已提交
81
        },
X
xjh22222228 已提交
82 83 84 85
      ]
    },
  ]
}