@metreeca/http - v0.1.1
    Preparing search index...

    Module monitor

    Exchange reporting middleware.

    Reports every exchange a client performs, as it is submitted and as it is answered, so that what the client is doing is observable without the call sites taking care of it.

    Exchanges are relayed untouched, whatever is reported, so that the middleware is inserted anywhere in a chain, and taken out again, without changing what the chain does.

    Usage

    import { createFetch } from "@metreeca/http";
    import { monitor } from "@metreeca/http/monitor";

    const client = createFetch(monitor(console));
    monitor

    Creates an exchange monitoring middleware.