π¦ Fiber
Fiber represents the fiber package where you start to create an instance.
π App
The `App` type represents your 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
Fiber lets you run custom callbacks at specific points in the routing lifecycle. Available hooks include:
ποΈ State Management
State management provides a global keyβvalue store for application dependencies and runtime data. The store is shared across the entire application and persists between requests. It's commonly used to store Services, which you can retrieve with the GetService or MustGetService functions.
π§© Services
Services wrap external dependencies. Register them in the application's state, and Fiber starts and stops them automaticallyβuseful during development and testing.
π Constants
Core HTTP constants used throughout Fiber.