fiber
fiber copied to clipboard
⚡️ Express inspired web framework written in Go
### Feature Proposal Description Add options object for active the DisallowUnknownFields in the BodyParser for more strict parsing to a struct in cases where is required. ### Alignment with Express...
## Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change....
## Description This Feature provides an approach in Go to assign default values to the fields of structs. The tagHandlers function assigns these default values based on the specific type...
### Feature Description Some APIs like [ctx.QueryBool](https://pkg.go.dev/github.com/gofiber/fiber/v2#Ctx.QueryBool) or [ctx.QueryFloat](https://pkg.go.dev/github.com/gofiber/fiber/v2#Ctx.QueryFloat) convert given variables. Why don't add APIs that let users convert the needed variable types? For example, Query convertor API can...
## Description as a user, i dont it is a good idea that a panic occurs in running time because of the error handle of web framework. why not new...
### Feature Proposal Description # Idea One Storage interface doesn't allow us to pass context to make operations cancellable. We should add new methods to allow context operations. Something like:...
### Question Description **Versions**: Go 1.21.5 github.com/gofiber/fiber/v2 v2.52.0 github.com/valyala/fasthttp v1.51.0 --- **Issue** I have the following logic inside of an SSE handler: ```go // Peak at the incoming Accept request...
### Feature Description When using c.Params() sometimes a function is necessary to format the param value to be further used, which is why the ability to be able to edit...
### Bug Description fiber can not handle chinese characters in request url work fine in browser, but failed when use ApiPost(an api testing software) ``` r.Get("/pic/*", GetImage) func GetImage(c *fiber.Ctx)...
### Bug Description I used Fiber to handle and API Endpoint and take JSON objects with strings and simply store them in a DB. The strings are gettinbg send as...