fiber icon indicating copy to clipboard operation
fiber copied to clipboard

⚡️ Express inspired web framework written in Go

Results 198 fiber issues
Sort by recently updated
recently updated
newest added

### 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...

✏️ Feature
v3
📝 Proposal

## 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....

✏️ Feature
🧹 Updates
v3

## 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
v3

### 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...

🛠 In Progress
👍 Accepting PR
✏️ Feature
v3

## 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...

🧹 Invalid

### 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:...

v3
📝 Proposal

### 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...

🤔 Question

### 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...

✏️ Feature

### 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

### 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...

☢️ Bug
🛠 In Progress