http_interop

This is a lightweight package that facilitates interoperability between different HTTP client and server implementations in Dart. It defines the Request and Response classes and a universal client/server Handler interface with a single method: Future<Response> handle(Request request).

Motivation

One of the most popular solutions for client-server interaction is an HTTP API where each request and response fit in a single HTTP message. A prime example is the pub.dev API. Implementing a client (or server, or both) for such an API often involves basing your client on top of an HTTP client, leading to the risks of tight coupling with a particular HTTP client implementation. This coupling raises issues related to testability, potentially requiring unwanted mocking in unit-level tests o r relying on end-to-end tests, both of which can limit coverage and make testing cumbersome.

Solution

With this package, rather than coupling to a specific HTTP-level implementation, you can implement a single handle() method. The Request and Response classes are simple Dart classes that can be instantiated and analyzed directly in tests, offering a straightforward API. Developers are free to extend either or both of these classes or create their own implementations.

Pros

  • Decouples code from underlying HTTP delivery mechanisms.
  • Simplifies and cleans up tests, whether you're developing a client or a server.
  • Eliminates the need for an HTTP stack in tests.
  • Allows users to use their preferred HTTP client or server with your library, and they can even switch between clients.

Cons

  • Limited capabilities when using a streaming API, long polling, or web sockets.
  • Introduces an additional dependency to your library.
  • Adds at least two more dependencies (the interop package itself and the client/server wrapper) to your customers' projects.

Existing Implementations

Where http_interop is used