2 Repos
Mapping HTTP status codes and network failures to a consistent error object structure.
Distinct from Network Error Normalization: Focuses on HTTP application-level errors rather than OS-level socket error mapping
Explore 2 awesome GitHub repositories matching operating systems & systems programming · HTTP Error Normalization. Refine with filters or upvote what's useful.
Axios is a promise-based HTTP client used to make asynchronous network requests in both browser and Node.js environments. It functions as a multi-environment network adapter that abstracts the transport layer to ensure consistent behavior across different runtimes. The project distinguishes itself through a request lifecycle management system that allows for the cancellation of active requests, the setting of timeouts, and the monitoring of upload and download transfer progress. It includes a mechanism for intercepting network traffic, enabling the transformation of outgoing requests and inco
Normalizes various network failures and HTTP status codes into a structured error object for consistent handling.
This library provides a comprehensive framework for managing errors in JavaScript and TypeScript applications. It enables the creation of structured, type-safe error hierarchies, allowing developers to define custom error classes that ensure consistent behavior and categorization across a codebase. The project distinguishes itself through a modular plugin architecture that allows for the extension of core error functionality, such as custom logging, serialization, and validation. It includes an exception normalization pipeline that converts non-standard or malformed errors into predictable in
Normalizes unknown exceptions and malformed error objects into defined, predictable error instances to prevent runtime bugs.