TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Golang Codebases to Read

6 pointsby codenlearnover 4 years ago
I've been writing in golang since the past year but I realize there is a lot I can improve in the way I'm writing go. Interested to know the best practices to be followed. Thanks again

2 comments

zkirillover 4 years ago
The Go standard library is excellent. When I wrote Go I always used it for reference and best practices. No other open source project really came close in my opinion except for other Google Go projects.
InitEnablerover 4 years ago
Read "Effective Go" on the Golang main page. Its a pretty good primer on how to document, naming conventions, and other things for your code.