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
- Host: GitHub
- URL: https://github.com/devhindo/go
- Owner: devhindo
- License: mit
- Created: 2023-05-29T01:03:54.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-01T21:44:23.000Z (about 2 years ago)
- Last Synced: 2024-12-29T21:32:33.751Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 1.4 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)