huma icon indicating copy to clipboard operation
huma copied to clipboard

Huma REST/HTTP API Framework for Golang with OpenAPI 3.1

Results 66 huma issues
Sort by recently updated
recently updated
newest added

This semi addresses issue #20 in that it gives us a Getter to get the chi mux so we can add handlers for methods other than Huma Resources.

As this is built on top of chi I feel/hope this should be possible, but I'm not seeing any APIs in huma to do this? Forgive me if there's an...

enhancement

see: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#security-scheme-object Thanks for your work! 😄

Hi guys. Your project looks really cool. Due to performance issues, I need to migrate an api in NodeJS (loopback) to Go, and in the search I found Huma, which...

help wanted
question

I noticed that there are ways to return results that have not been defined for an endpoint: - ❌ `ctx.Write()` seems to always get through and is not compared to...

bug
documentation
question

I noticed that the `$schema` property is present in the request body of my endpoint input: ![schema](https://user-images.githubusercontent.com/101593/166867095-026333d2-72d5-4189-99b2-52696b8536bb.png) However, this causes an error when I click on "Try it" in the...

bug

Howdy fellow Pacific Northwest person 👋 ⛰️ I found huma while looking for something FastAPI-like but in Go, and wow, thanks so much for this project! This really fits my...

enhancement

I just stumbled over this project. So far it looks great but I recognized one pretty 'ugly' point. In case of using a model twice e.g. encapsulated inside a slice...

bug
question

In order to distinguish between zero value and missing field, pointer is sometimes used in body fields. For example, ```golang type InputBody struct { Quota *int64 `json:"quota" example:"1611198330"` } ```...

bug