ποΈ π¦ 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, and it's used to store Services. You can retrieve those Services from the global state using the GetService or MustGetService functions.
ποΈ π₯‘ Services
Services provide external services needed to run the application, stored as dependencies in the application's State Management. They are supposed to be used while developing and testing the application, being started and stopped automatically by the application.
ποΈ π Constants
Some constants for Fiber.