go语言周边
博主收藏的go语言资料,分享一波~~~
官网
- https://golang.org/ (被墙)
镜像:
下载镜像:
Go Playground:
提示:可以参考 https://github.com/golang/playground 搭建自己的Go Playground。
教程
- astaxie/build-web-application-with-golang: A golang ebook intro how to build a web with golang
https://github.com/astaxie/build-web-application-with-golang - chai2010/advanced-go-programming-book: 《Go语言高级编程》开源图书,涵盖CGO、Go汇编语言、RPC实现、Protobuf插件实现、Web框架实现、分布式系统等高阶主题(完稿)
https://github.com/chai2010/advanced-go-programming-book - 《快学 Go 语言》最新内容大全
https://mp.weixin.qq.com/s/OVEPFX6YRBgdq2M_WVns7Q - unknwon/the-way-to-go_ZH_CN: 《The Way to Go》中文译本,中文正式名《Go 入门指南》
https://github.com/unknwon/the-way-to-go_ZH_CN - Golang - 100天从新手到大师
https://github.com/rubyhan1314/Golang-100-Days
标准库
Go 标准库中文文档
http://cngolib.com/The-Golang-Standard-Library-by-Example
https://github.com/polaris1119/The-Golang-Standard-Library-by-Example
提示:使用
godoc -http :8000
会在本地开启Go Documentation Server
,浏览器输入:http://localhost:8000/ 即可浏览。
相关教程:
Go内置常用包 - 飞鸿影
https://www.cnblogs.com/52fhy/p/11295090.htmlgo第三方常用包 - 飞鸿影
https://www.cnblogs.com/52fhy/p/12584574.html
社区
- Go语言中文网 - Golang中文社区
https://studygolang.com/
IDE
GoLand: A Clever IDE to Go by JetBrains
https://www.jetbrains.com/go/LiteIDE X
http://liteide.org/cn/
镜像
使用示例:
export GOPROXY=https://mirrors.aliyun.com/goproxy/
go get -v github.com/jpillora/go-tcp-proxy/cmd/tcp-proxy
框架
- beego: 简约 & 强大并存的 Go 应用框架
https://beego.me/ - gin-gonic/gin
https://github.com/gin-gonic/gin - micro/go-micro: The Go Micro services development framework
https://github.com/micro/go-micro - gohugoio/hugo: The world’s fastest framework for building websites.
https://github.com/gohugoio/hugo
GRPC
grpc/grpc: The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://github.com/grpc/grpcgRPC入坑记 - 飞鸿影
https://www.cnblogs.com/52fhy/p/11110704.htmlGRPC调试工具 - 飞鸿影
https://www.cnblogs.com/52fhy/p/12376940.htmlprocessout/grpc-go-pool: grpc connection pool
https://github.com/processout/grpc-go-poolgrpc-ecosystem/grpc-gateway: gRPC to JSON proxy generator following the gRPC HTTP spec
https://github.com/grpc-ecosystem/grpc-gatewayvaporz/turbo: A lightweight microservice tool, turn your grpc|thrift APIs into HTTP APIs!
https://github.com/vaporz/turbo
服务发现
- 用consul做grpc的服务发现 - 个人文章 - SegmentFault 思否
https://segmentfault.com/a/1190000018424798 - [转]gRPC服务发现&负载均衡 | 鸟窝
https://colobu.com/2017/03/25/grpc-naming-and-load-balance/ - maemual/raft-zh_cn: Raft一致性算法论文的中文翻译
https://github.com/maemual/raft-zh_cn
工具
- 使用gofmt格式化代码 - 掘金
https://juejin.im/post/5b4d824bf265da0f5e32db08 - golangci/golangci-lint: Linters Runner for Go. 5x faster than gometalinter
https://github.com/golangci/golangci-lint - Golang程序调试工具介绍(gdb vs dlv) | lday的博客
http://lday.me/2017/02/27/0005_gdb-vs-dlv/ - go-delve/delve: Delve is a debugger for the Go programming language.
https://github.com/go-delve/delve - jpillora/go-tcp-proxy: A small TCP proxy written in Go
https://github.com/jpillora/go-tcp-proxy - siddontang/go-mysql-elasticsearch: Sync MySQL data into elasticsearch
https://github.com/siddontang/go-mysql-elasticsearch - hanchuanchuan/goInception: 一个集审核、执行、备份及生成回滚语句于一身的MySQL运维工具
https://github.com/hanchuanchuan/goInception - spf13/cobra: A Commander for modern Go CLI interactions
https://github.com/spf13/cobra - valyala/fasthttp: Fast HTTP package for Go. Tuned for high performance. Zero memory allocations in hot paths. Up to 10x faster than net/http
https://github.com/valyala/fasthttp
区块链
- ethereum/go-ethereum: Official Go implementation of the Ethereum protocol
https://github.com/ethereum/go-ethereum
内网穿透
fatedier/frp
A fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet.
https://github.com/fatedier/frp
ehang-io/nps
一款轻量级、高性能、功能强大的内网穿透代理服务器。支持tcp、udp、socks5、http等几乎所有流量转发,可用来访问内网网站、本地支付接口调试、ssh访问、远程桌面,内网dns解析、内网socks5代理等等……,并带有功能强大的web管理端
https://github.com/ehang-io/nps
snail007/goproxy
Proxy是高性能全功能的http代理、https代理、socks5代理、内网穿透、内网穿透p2p、内网穿透代理、内网穿透反向代理、内网穿透服务器、Websocket代理、TCP代理、UDP代理、DNS代理、DNS加密代理,代理API认证,全能跨平台代理服务器。
https://github.com/snail007/goproxy
Database
CodisLabs/codis
Proxy based Redis cluster solution supporting pipeline and scaling dynamically
https://github.com/CodisLabs/codis
UI
fyne-io/fyne
Cross platform GUI in Go based on Material Design
https://github.com/fyne-io/fyne
其它
- 减小 golang 编译出程序的体积
http://blog.fatedier.com/2017/02/04/reduce-golang-program-size/ - avelino/awesome-go: A curated list of awesome Go frameworks, libraries and software
https://github.com/avelino/awesome-go#gui - yudai/gotty: Share your terminal as a web application
https://github.com/yudai/gotty - kubernetes/minikube: Run Kubernetes locally
https://github.com/kubernetes/minikube - docker-slim/docker-slim: DockerSlim (docker-slim): Don't change anything in your Docker container image and minify it by up to 30x (and for compiled languages even more) making it secure too! (free and open source)
https://github.com/docker-slim/docker-slim - gogs/gogs: Gogs 是一款极易搭建的自助 Git 服务
https://github.com/gogs/gogs - go-gitea/gitea: Git with a cup of tea, painless self-hosted git service
https://github.com/go-gitea/gitea
go语言周边的更多相关文章
- 从入门到精通C++需要学的10本书
学习C++从入门到精通的的十本最经典书籍 文章来源中国IT实验室收集整理作者佚名更新时间2009-5-16 12:27:05 保存本文保存本文推荐给好友推荐给好友收藏本页收藏本页 欢迎进入C/C++ ...
- 【C++探索之旅】开宗明义+第一部分第一课:什么是C++?
内容简介 1.课程大纲 2.第一部分第一课:什么是C++? 3.第一部分第二课预告:C++编程的必要软件 开宗明义 亲爱的读者,您是否对C++感兴趣,但是C++看起来很难,或者别人对你说C++挺难的, ...
- JavaScript 最终将在编程语言中占统治地位?
JavaScript 最终将在编程语言中占统治地位? JavaScript 现在是大多数开发者都会使用的编程语言.网络效应会推动它成为有史以来第一个真正占统治地位的编程语言吗? 大约十年前,编程的方式 ...
- 学习C++从入门到精通的的十本最经典书籍
原文:http://blog.csdn.net/a_302/article/details/17558369 最近想学C++,找了一下网上推荐的书籍,转载过来给大家分享 转载自http://c.chi ...
- Mac周边环境 goBASIC语言HelloWorld
1. 安装mercurial Mercurial 是一种轻量级分布式版本号控制系统,採用 Python 语言实现 能够输入hg命令查询系统是否安装mercurial,能够例如以下两种命令安装 $sud ...
- 【GoLang】转载:我为什么放弃Go语言,哈哈
我为什么放弃Go语言 作者:庄晓立(Liigo) 日期:2014年3月 原创链接:http://blog.csdn.NET/liigo/article/details/23699459 转载请注明出处 ...
- 华为C语言编程规范
DKBA华为技术有限公司内部技术规范DKBA 2826-2011.5C语言编程规范2011年5月9日发布 2011年5月9日实施华为技术有限公司Huawei Technologies Co., Ltd ...
- 《自学C语言》第一章:C语言简介
这一章主要介绍什么是C语言,以及它的产生.发展历史.如其中所说的计算机术语有不懂的请百度,例如什么是强类型,什么是高级语言. 1.C语言是什么? 答:C语言是一门通用计算机编程语言,应用广泛.C语言的 ...
- linux设置语言编码
前段时间在服务器上安装了centos6.2版本,当初安装时语言选择英文.这本来也没有什么问题,直到前一段时间.我的同事发现部署的web项目中出现乱码情况.但中文作为参数进行传递到下一个页面的时候就乱码 ...
随机推荐
- 实现 add()(1,2)(3,4)(7,8,9)()
function add(){ var sum=0; function inner(pre,cur){ return pre+cur; } sum=Array.prototype.slice.call ...
- iOS多线程开发之GCD(基础篇)
总纲: GCD基本概念 GCD如何实现 GCD如何使用 队列和任务组合 一.GCD基本概念 GCD 全称Grand Central Dispatch(大中枢队列调度),是一套低层API,提供了⼀种新的 ...
- cordova+jquery form上传里面的一些诡异坑
在浏览器里面执行很正常的代码,打包到手机上测试就出问题了,浏览器中的执行版本如下: <!DOCTYPE html> <html lang="en"> < ...
- Webpack 常用 modules
@(Javascript)[webpack] babel babel-core: babel 核心程式,知道如何載入程式碼.解析和輸出檔案(但不包含編譯). babel-loader: 用來告訴 ba ...
- IIS+PHP+Mysql 返回500,服务器内部资源问题
这个错误困扰了我好久.... 尝试了好多方法都不管用,最后突然发现我的代码是: <?php $link=mysql_connect("localhost","xxx ...
- python基础-基本概念
python概念介绍 python是一门动态解释型的强类型定义语言,创始人吉多·范罗苏姆(Guido van Rossum) #编译型语言 编译型:一次性将所有程序编译成二进制文件 缺点:开发效率低, ...
- 94-datetmie模块
目录 datetmie模块 1 返回当前时间 2 当前时间+3天 3 当前时间-3天 4 当前时间-3小时 5 当前时间+30分钟 6 时间替换 datetmie模块 datetime模块可以看成是时 ...
- Windows GDI 窗口与 Direct3D 屏幕截图
前言 Windows 上,屏幕截图一般是调用 win32 api 完成的,如果 C# 想实现截图功能,就需要封装相关 api.在 Windows 上,主要图形接口有 GDI 和 DirectX.GDI ...
- 原生js写一个无缝轮播图插件(支持vue)
轮播图插件(Broadcast.js) 前言:写这个插件的原因 前段时间准备用vue加上网易云的nodejs接口,模拟网易云音乐移动端.因为想自己写一遍所有的代码以及加固自己的flex布局,所以没有使 ...
- An incompatible version [1.1.33] of the APR based Apache Tomcat Native library is installed, while Tomcat requires version [1.2.14]
Springboot项目启动出现如下错误信息 解决办法在此地址:http://archive.apache.org/dist/tomcat/tomcat-connectors/native/1.2.1 ...