M. Efe Çetin
M. Efe Çetin
- [ ] https://github.com/Masterminds/squirrel - [ ] https://github.com/golobby/orm - [ ] https://github.com/mazrean/genorm - [ ] https://github.com/VinGarcia/ksql
Current benchmark iplementation is fine but it may contains some potantial problems and bugs. To escape these problems, we should create new benchmark suite by using https://pkg.go.dev/testing#Benchmark
Pico W has been released today with included wirless chip. It would be great if tinygo supports it. It uses CYW43439 as wireless chip. https://www.raspberrypi.com/news/raspberry-pi-pico-w-your-6-iot-platform/
**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 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)
- [ ] go1.16 io/fs implementation for filesystem middleware. - [x] Make Render: `func (c *Ctx) Render(name string, bind Map layouts ...string) error ` - [x] Extend logger middleware like...
**Closes:** https://github.com/gofiber/fiber/issues/1826 **To-Do:** - [x] Add more tests for new Start method. - [x] Make graceful shutdown automatically. - [x] Fix prefork tests.