《Go开发指南》翻译邀请

The Go Gopher

7月并发网组织翻译GO官网教程https://golang.google.cn/doc/相关技术文章,欢迎大家踊跃参加。

如何领取

通过评论领取想要翻译的文章,每次领取一章或一节(根据内容长短),翻译完后再领取其他章节。领取完成之后,译文最好在一个星期内翻译完成,如果不能完成翻译,也欢迎你邀请其他同学和你一起完成翻译。请谨慎领取,很多文章领取了没有翻译,导致文章很长时间没人翻译。

如何提交?

翻译完成之后请登录到并发网提交成待审核状态,会有专门的编辑校对后进行发布。如果多篇文章翻译被评为A级会升级您为译者,并加入译者沟通微信群。如果在本站翻译超过十篇文章,将有礼品赠送,比如签名版的《Java并发编程的艺术》或者荣誉译者奖杯等。如果你喜欢使用markdown编写文章,可以将markdown生成后的HTML复制到网站上进行提交,mac下推荐使用MacDown软件。

Getting started

Installing GoInstructions for downloading and installing Go.

Tutorial: Getting startedA brief Hello, World tutorial to get started. Learn a bit about Go code, tools, packages, and modules.

Tutorial: Create a moduleA tutorial of short topics introducing functions, error handling, arrays, maps, unit testing, and compiling.

Writing Web ApplicationsBuilding a simple web application.

How to write Go codeThis doc explains how to develop a simple set of Go packages inside a module, and it shows how to use the go command 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 GoA 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 IDEsA document that summarizes commonly used editor plugins and IDEs with Go support.

DiagnosticsSummarizes tools and methodologies to diagnose problems in Go programs.

Managing dependenciesWhen your code uses external packages, those packages (distributed as modules) become dependencies.

Developing modules

Developing and publishing modules

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

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

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

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

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

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)Answers to common questions about Go.

References

Package DocumentationThe documentation for the Go standard library.

Command DocumentationThe documentation for the Go tools.

Language SpecificationThe official Go Language specification.

Go Modules ReferenceA detailed reference manual for Go’s dependency management system.

go.mod file reference

Reference for the directives included in a go.mod file.

The Go Memory ModelA 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 HistoryA summary of the changes between Go releases.

原创文章,转载请注明: 转载自并发编程网 – ifeve.com本文链接地址: 《Go开发指南》翻译邀请

  1. 1. Installing Go
    2. Managing Go installations
    3. Installing Go from source
    4. Setting up and using gccgo

    这几篇属于关联内容,都是关于安装Go环境的。
    前两篇已经翻译完成,后两篇翻译中,申请之。

  2. 先承接翻译《Getting started》章的《Tutorial: Getting started》节

  3. 《Tutorial: Getting started》已翻译完,继续申请《Tutorial: Create a module》和《Writing Web Applications》。

    • CodeNongXW
    • 2021/08/24 3:43下午

    感谢博主的分享,博主的文采很好,希望博主也能出一款最近很火的国产接口工具apipost的使用教程,谢谢博主。

  1. 暂无 Trackback

return top