[go-nuts] Re: Introducing LWDK - A Framework Stack Connecting Vite/Vue and Golang for productivity

2025-06-23 Thread Shaun Houlihan
Hi Tulio, I think there is definitely room for tooling that simplifies full stack development with Go (Go + JS/TS framework). It is definitely something I've thought about building, having done this kind of full-stack development myself. (well, actually, I have built little tools for various ta

[go-nuts] Re: OpenAPI and Go

2025-03-03 Thread Shaun Houlihan
Hi Alex, Yes, I use OpenAPI all the time for doing API-first development in Go. This is the go-to generator currently, as far as I'm aware: https://github.com/oapi-codegen/oapi-codegen It is very comprehensive, though in my opinion a bit configuration heavy and not quite strict enough. I'm wo

Re: [go-nuts] Practical OpenAPI in Go

2025-02-13 Thread Shaun Houlihan
Hi Mike, I'm curious to hear in more detail what you mean when you say the oapi-codegen generation is "cryptic". I also have some things I don't like about that generator and have been toying with building an alternative. Feel free to contact me directly if you feel like discussing. Best, Shaun

[go-nuts] Re: Practical OpenAPI in Go

2025-02-12 Thread Shaun Houlihan
Hi Alex, If you're referring to the OpenAPI standard for describing APIs, yes I use that all the time for go services, along with oapigen tool that is referenced in that tutorial. Imo it should sort of be the standard process for building go rest services. I'm actually in the process of buildin