fiber
fiber copied to clipboard
⚡️ Express inspired web framework written in Go
**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...
### 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...
# 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...
**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...
### 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...
**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 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...
- Make middleware extandable for 3rd-party loggers. (https://github.com/gofiber/fiber/issues/1828)
* 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....
**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...