http_toolkit 1.0.0+1
http_toolkit: ^1.0.0+1 copied to clipboard
Collection of missing features for the Dart HTTP package.
Changelog #
1.0.0+1 #
- Minor fixes and updates to docs.
1.0.0 #
- Initial release.
- Client: A robust HTTP client wrapper compatible with key
httppackage logic. - Middleware: New
Middlewareinterface for structured request/response processing. - Retry:
RetryMiddlewarewith configurableBackoffStrategy(Exponential, Linear, Fixed). - Logger:
LoggerMiddlewarewith support for logging headers and bodies, usingprintby default. - Auth:
BearerAuthMiddlewareandBasicAuthMiddleware. - BaseUrl:
BaseUrlMiddlewarefor convenient URL handling. - Interceptors: Lightweight hooks for
onRequest,onResponse, andonError. - Extensions: Useful extensions for
http.Response(JSON parsing) andhttp.Client. - Added
ClientExtensionsfor easier query parameter handling.