Proxy Table of Contents Signatures Examples Config Default Config Proxy Proxy middleware for Fiber that allows you to proxy requests to multiple servers. Table of Cont...
Concurrency Concurrency vs. Parallelism Fibers Event loop Channels Execution of a program A Fiber The Runtime Scheduler Communicating data Sample code Spawning a fiber Spa...
Concurrency Concurrency vs. Parallelism Fibers Event loop Channels Execution of a program A Fiber The Runtime Scheduler Communicating data Sample code Spawning a fiber Spa...
Compress Getting Started Compress Compression middleware for Fiber that supports gzip, deflate and brotli compression depending on the Accept-Encoding header. Getting Start...
CSRF Table of Contents Signatures Examples Config Default Config CSRF CSRF middleware for Fiber that provides Cross-site request forgery protection by passing a csrf tok...
Limiter Signatures Examples Config Default Config Limiter Limiter middleware for Fiber used to limit repeated requests to public APIs and/or endpoints such as password res...
📝 Templates Template interfaces Engines 📝 Templates Template interfaces Fiber provides a Views interface to provide your own template engine: type Views interface ...
HTTP Methods HTTP Methods Routes an HTTP request, where METHOD is the HTTP method of the request. // HTTP methods support :param, :optional? and *wildcards // You are requ...
Hello, World! Hello, World! Embedded below is essentially simplest Fiber app, which you can create. package main import "github.com/gofiber/fiber" func main () {...
🎭 Grouping Paths Group Handlers 🎭 Grouping Paths Like Routing , groups can also have paths that belong to a cluster. func main () { app := fiber . New () api...