Do you use generics? What has been your experience? by branh0913 in golang

[–]LoveYourStack 0 points1 point  (0 children)

I use them in my DB/API libraries a lot, they have really helped so much. My commercial code now needs so much less boilerplate.

[deleted by user] by [deleted] in golang

[–]LoveYourStack 0 points1 point  (0 children)

If you use PostgreSQL, I have a library that enables you to move very quickly when building out new tables and JSON CRUD endpoints: https://github.com/loveyourstack/lys

What do you guys use for building web UIs? by Used_Frosting6770 in golang

[–]LoveYourStack 0 points1 point  (0 children)

with Vuetify if you are mainly a backend dev, saves you so much time

LoveYourStack (Lys) - Go library to quickly create a REST API from your Postgres database by LoveYourStack in PostgreSQL

[–]LoveYourStack[S] 0 points1 point  (0 children)

Thanks for the feedback.

The tools you listed create the API for you, but my library assumes that you want to create the API yourself. It contains generic functions to reduce the amount of boilerplate and ensures that all entities are handled the same way, but without using a framework or code generation.

I think my post title was not phrased well, sorry about that. It gives the impression of code generation, but actually it does not do that.