《Go开发指南》翻译邀请
并发编程网组织新的一期系列文章翻译,这期是GO官网教程 https://golang.google.cn/doc/ 相关技术文章,欢迎大家踊跃参加。
如何领取
通过本文留言或网站原文( http://ifeve.com/go/ )评论领取想要翻译的文章,每次领取一章或一节(根据内容长短),翻译完后再领取其他章节。领取完成之后,译文最好在一个星期内翻译完成,如果不能完成翻译,也欢迎你邀请其他同学和你一起完成翻译。请谨慎领取,很多文章领取了没有翻译,导致文章很长时间没人翻译。
如何提交?
翻译完成之后请登录到并发网提交成待审核状态,会有专门的编辑校对后进行发布。如果多篇文章翻译被评为A级会升级您为译者,并加入译者沟通微信群。如果在本站翻译超过十篇文章,将有礼品赠送,比如签名版的《Java并发编程的艺术》或者荣誉译者奖杯等。如果你喜欢使用markdown编写文章,可以将markdown生成后的HTML复制到网站上进行提交,mac下推荐使用MacDown软件。
Getting started
Installing Go ( https://golang.google.cn/doc/install ) Instructions for downloading and installing Go.
Tutorial: Getting started ( https://golang.google.cn/doc/tutorial/getting-started.html ) A brief Hello, World tutorial to get started. Learn a bit about Go code, tools, packages, and modules.(该章节已翻译)
Tutorial: Create a module ( https://golang.google.cn/doc/tutorial/create-module.html ) A tutorial of short topics introducing functions, error handling, arrays, maps, unit testing, and compiling.
Writing Web Applications (https://golang.google.cn/doc/articles/wiki/) Building a simple web application.
How to write Go code ( https://golang.google.cn/doc/code.html )This doc explains how to develop a simple set of Go packages inside a module, and it shows how to use the
gocommand( https://golang.google.cn/cmd/go/ ) to build and test packages.
A Tour of GoAn interactive introduction to Go in three sections. The first section covers basic syntax and data structures; the second discusses methods and interfaces; and the third introduces Go’s concurrency primitives. Each section concludes with a few exercises so you can practice what you’ve learned. You can install it locally with:$ go get golang.org/x/tour This will place the tour binary in your workspace’s bin directory.
Using and understanding Go
Effective Go ( https://golang.google.cn/doc/effective_go.html ) A document that gives tips for writing clear, idiomatic Go code. A must read for any new Go programmer. It augments the tour and the language specification, both of which should be read first.
Editor plugins and IDEs ( https://golang.google.cn/doc/editors.html ) A document that summarizes commonly used editor plugins and IDEs with Go support.
Diagnostics ( https://golang.google.cn/doc/diagnostics.html ) Summarizes tools and methodologies to diagnose problems in Go programs.
Managing dependencies ( https://golang.google.cn/doc/modules/managing-dependencies ) When your code uses external packages, those packages (distributed as modules) become dependencies.
Developing modules
Developing and publishing modules ( https://golang.google.cn/doc/modules/developing )
You can collect related packages into modules, then publish the modules for other developers to use. This topic gives an overview of developing and publishing modules.
Module release and versioning workflow ( https://golang.google.cn/doc/modules/release-workflow )
When you develop modules for use by other developers, you can follow a workflow that helps ensure a reliable, consistent experience for developers using the module. This topic describes the high-level steps in that workflow.
Managing module source ( https://golang.google.cn/doc/modules/managing-source )
When you’re developing modules to publish for others to use, you can help ensure that your modules are easier for other developers to use by following the repository conventions described in this topic.
Developing a major version update ( https://golang.google.cn/doc/modules/major-version )
A major version update can be very disruptive to your module’s users because it includes breaking changes and represents a new module. Learn more in this topic.
Publishing a module ( https://golang.google.cn/doc/modules/publishing )
When you want to make a module available for other developers, you publish it so that it’s visible to Go tools. Once you’ve published the module, developers importing its packages will be able to resolve a dependency on the module by running commands such as go get.
Module version numbering ( https://golang.google.cn/doc/modules/version-numbers )
A module’s developer uses each part of a module’s version number to signal the version’s stability and backward compatibility. For each new release, a module’s release version number specifically reflects the nature of the module’s changes since the preceding release.
Frequently Asked Questions (FAQ) ( https://golang.google.cn/doc/faq ) Answers to common questions about Go.
References
Package Documentation ( https://golang.google.cn/pkg/ ) The documentation for the Go standard library.
Command Documentation ( https://golang.google.cn/doc/cmd ) The documentation for the Go tools.
Language Specification ( https://golang.google.cn/ref/spec ) The official Go Language specification.
Go Modules Reference ( https://golang.google.cn/ref/mod ) A detailed reference manual for Go’s dependency management system.
go.mod file reference ( https://golang.google.cn/doc/modules/gomod-ref )
Reference for the directives included in a go.mod file.
The Go Memory Model ( https://golang.google.cn/ref/mem ) A document that specifies the conditions under which reads of a variable in one goroutine can be guaranteed to observe values produced by writes to the same variable in a different goroutine.
Release History ( https://golang.google.cn/doc/devel/release.html ) A summary of the changes between Go releases.