Open nelsonic opened 5 months ago
Need to do a quick recon of Go Web frameworks to decide which one we can/should use for a mini project that might turn into a larger one ...
Go
Specifically need:
Phoenix
next.js
htmx
auth
mix phx.gen.auth
phoenix mix.gen.html
Reading: https://www.reddit.com/r/golang/comments/11044h8/best_web_sever_framework/ it appears as though our initial list for research is:
gin
echo
go-chi
Note: we need to do this research as a "break" from our other more pressing work.
https://medium.com/@chaewonkong/comparing-go-web-frameworks-25bf93524a6a
As predicted:
So we need to brush up on our Go knowledge in the near future. š§āš» ā
Need to do a quick recon of
Go
Web frameworks to decide which one we can/should use for a mini project that might turn into a larger one ...Specifically need:
Phoenix
or lightweight but easy to extend likenext.js
htmx
.auth
built-in or a simple to add likemix phx.gen.auth
or via plugin.phoenix mix.gen.html
Reading: https://www.reddit.com/r/golang/comments/11044h8/best_web_sever_framework/ it appears as though our initial list for research is:
gin
: https://gin-gonic.com/docs -> https://github.com/gin-gonic/gin Definitely the most mature and popular.echo
: https://echo.labstack.com -> https://github.com/labstack/echo The "contender".go-chi
: https://github.com/go-chi/chi Looks very lightweight (basic?) to me. That's good for perf but not sure about maintainability in a larger team ... šNote: we need to do this research as a "break" from our other more pressing work.