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

**Please provide enough information so that others can review your pull request:** **Explain the *details* for making this change. What existing problem does the pull request solve?** **Commit formatting** Use...

✏️ Feature

### Question Description I'm having the code structure like this below: ``` someRouter.Use(auth.SomeAuthMiddleware) someRouter.Post( "/someEndpoint", controller.SomeEndpointHandler, genericResponseHandler.GenericJSONResponseHandler, ) ``` What I want is, if my Auth Middleware fails for some...

🤔 Question

# Aims > **Please provide enough information so that others can review your pull request:** Move `client.go` to `client/` to make project structure more tidy. Re-create client by inspiring by...

✏️ Feature
v3

**Please provide enough information so that others can review your pull request:** related to https://github.com/gofiber/fiber/issues/1821 and https://github.com/gofiber/fiber/issues/2002 **Explain the *details* for making this change. What existing problem does the pull...

♻ Wait for Response
✏️ Feature
v3

### Feature Description Currently, Fiber binding uses gorilla/schema and it's very slow and doesn't support multipart files (https://github.com/gofiber/fiber/issues/1967). We should write more performant, powerful parser acording to the needs of...

✏️ Feature
v3

**Close:** https://github.com/gofiber/fiber/issues/1903 **Example:** ```go app.Get("/:test", func(c *fiber.Ctx) error { return c.SendString(c.Params("test")) }) app.Get("/:test", func(c *fiber.Ctx) error { return c.SendString(c.Params("test")) }) ``` **To-Do:** - [x] Tests and benchmarks. - [x] Multiple...

✏️ Feature
v2

### Feature Description At the moment, there're 3 methods to redirect: Redirect(), RedirectToRoute(), RedirectBack(). They're useful methods but they make Ctx more mess. To solve this, we should combine them...

✏️ Feature
v3

- Make middleware extandable for 3rd-party loggers. (https://github.com/gofiber/fiber/issues/1828)

✏️ Feature
🧹 Updates
v3

* General logic is implemented. * Unit tests are added. Signed-off-by: Gökhan Özeloğlu **Please provide enough information so that others can review your pull request:** It is related to #1840....

✏️ Feature
v3

**Is your feature request related to a problem?** No **Describe the solution you'd like** Easily and instant sync the public(www-root) folder with FE output - Put File via Blob ContentType...

✏️ Feature