An open API service indexing awesome lists of open source software.

https://github.com/devhindo/go

an attempt to discover go
https://github.com/devhindo/go

Last synced: 3 months ago
JSON representation

an attempt to discover go

Awesome Lists containing this project

README

          

# Go

## Docs

### Offline DOCS

```bash
#installation (Windows):
go install golang.org/x/tools/cmd/godoc@latest
# usage:
godoc -http=:6060
# open http://localhost:6060/
```

### DOCS

- [devdocs.io/go](https://devdocs.io/go/)
- [golang book](https://github.com/softchris/golang-book)
- [go by examples](https://gobyexample.com/)

## cmds

- init go project : `go mod init [project-name]`
- run go project : `go run main.go`

## projects res

- [CLI tool with go](https://levelup.gitconnected.com/tutorial-how-to-create-a-cli-tool-in-golang-a0fd980264f)

## video tutorials

- [golang project structure](golang project structure)

## roadmaps

- [roadmap.sh/golang](https://roadmap.sh/golang)