ποΈ π¦ 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.