DEV Community

Discussion on: My Go Toolkit to Build a Frameworkless App

Collapse
 
biros profile image
Boris Jamot ✊ /

I switched from gin router to httprouter. It's enough for my needs.
I also dropped viper to use builtin env var funcs.
I also dropped zap to use zerolog which is more simple.
In my toolbox, I gave a chance to gorm which a little ORM for Go.

I have to publish a new edition of my Go toolbox.

Collapse
 
jaakidup profile image
Jaaki

Nice, yes, simplicity is key for me.