📄️ 🔌 Routing
Routing refers to how an application's endpoints (URIs) respond to client requests.
📄️ 🎭 Grouping
In general, the Group functionality in Fiber behaves similarly to ExpressJS. Groups are declared virtually and all routes declared within the group are flattened into a single list with a prefix, which is then checked by the framework in the order it was declared. This means that the behavior of Group in Fiber is identical to that of ExpressJS.
📄️ 📝 Templates
Fiber supports server-side template engines.
📄️ 🐛 Error Handling
Fiber supports centralized error handling by returning an error to the handler which allows you to log errors to external services or send a customized HTTP response to the client.
📄️ 🔎 Validation
Validator package
📄️ ⚡ Make Fiber Faster
Custom JSON Encoder/Decoder
📄️ 🧰 Utils
Generics