Settings

Theme

Ask HN: Good examples of Go back ends?

7 points by looshch 2 years ago · 2 comments · 1 min read

Reader

hi!

can i please ask if someone knows good examples of back ends written in Go? If not good, just production code would be great as well!

thanks in advance and have a great rest of the weekend!

thrwwycbr 2 years ago

Most golang backends I've seen meanwhile use or switched to using the "gin" framework to build their APIs.

A lot of them also have conventions for the frontend, where the assets usually are stored in /public, so they can be go:embed later as an embed.FS instance into the binary.

Having said that, there's plenty of examples on github. I'd recommend to take a look at bigger projects or templates and understand how they structured their packages and abstraction levels. E.g. go-admin comes to mind [1]

[1] https://github.com/GoAdminGroup/go-admin

[2] https://github.com/gin-gonic/gin

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection