-
### Question Description
For example `internal/bytebufferpool` is a copy of https://github.com/valyala/bytebufferpool. Why not just import the external package instead of tracking its source? This'd …
-
### Bug Description
Fiber will mask any internal error in fasthttp with a BadRequest response. This was a pain to debug, even with stack traces the original error won't popup. The only I could find t…
-
### Bug Description
https://github.com/gofiber/fiber/blob/master/utils/convert.go#L24
https://github.com/gofiber/fiber/blob/master/internal/fasttemplate/unsafe.go#L15
See: https://stackoverflow…
-
## Summary
I'm using [fiber](https://github.com/gofiber/fiber) which uses fasthttp context.
On integrating `/fasthttp` package, I'm getting the error as : `invalid handler fasthttp.RequestHandler`
…
-
### Bug Description
I was using a third-party package (github.com/go-ping/ping) to ping an IP address; I mistakenly set Timeout parameter to 0 and it crashed the Ticker inside the package.
I thought…
-
### Feature Description
I want to replace `switch` matching `tag` with `map[string]func()` matching `tag` before processing. This adds custom `tag` functionality.
This allows us to add custom tags…
-
### Bug Description
I have to say this is a weird one. When using Go's template engine, only the last file in `views/` get rendered. The file structure is as follows:
```
.
├── views
│ ├── la…
-
The current layout is duplicated across all the pages, which is not ideal if a change is needed.
Break the layout into different templates so the layout can be "composed". The desired outcome of th…
-
### Bug Description
```go
func Home(c *fiber.Ctx) error {
//Context
lang := c.GetReqHeaders()["Accept-Language"]
ctxweb.Title = Translate("title", lang)
ctxweb.DataInput = Translate("datainp…
-
Hi @MicahParks,
I am using JWKS in a service-to-service token communication and would prefer to use `keyfunc` over the default implementation in https://github.com/gofiber/jwt. In order to have a l…