ποΈ π¦ Fiber
Fiber represents the fiber package where you start to create an instance.
ποΈ π App
The app instance conventionally denotes the Fiber application.
ποΈ π§ Ctx
The Ctx interface represents the Context which holds the HTTP request and response. It has methods for the request query string, parameters, body, HTTP headers, and so on.
ποΈ π Bind
Binds the request and response items to a struct.
ποΈ π Redirect
Fiber's built-in redirect package
ποΈ π Log
Fiber's built-in log package
ποΈ π£ Hooks
With Fiber you can execute custom user functions at specific method execution points. Here is a list of these hooks:
ποΈ ποΈ State Management
The State Management provides a global keyβvalue store for managing application dependencies and runtime data. This store is shared across the entire application and remains consistent between requests. It is implemented using Goβs sync.Map to ensure safe concurrent access.
ποΈ π Constants
Some constants for Fiber.