Skip to content

Given a Supply of bytes, provides a Supply of parsed HTTP requests or responses

Notifications You must be signed in to change notification settings

zostay/HTTP-Supply

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME

HTTP::Supply - modern HTTP/1.x message parser

SYNOPSIS

use HTTP::Supply::Request;

react {
    whenever IO::Socket::Async.listen('localhost', 8080) -> $conn {
        my $envs = HTTP::Supply::Request.parse-http($conn);
        whenever $envs -> %env {
            my $res := await app(%env);
            send-response($conn, $res);
        }
    }
}

use HTTP::Supply::Response;

react {
    whenever IO::Socket::Async.connect('localhost', 8080) -> $conn {
        send-request($conn);

        whenever HTTP::Supply::Response.parse-http($conn) -> $res {
            handle-response($res);
            done unless send-request($conn);
        }
    }
}

DESCRIPTION

EXPERIMENTAL: The API for these modules is experimental and may change.

This project provides asynchronous parsers for parsing HTTP request or response pipelines. As of this writing only HTTP/1.x is supported, but I hope to add HTTP/2 and HTTP/3 support as time allows.

AUTHOR

Sterling Hanenkamp <hanenkamp@cpan.org>

COPYRIGHT & LICENSE

Copyright 2016 Sterling Hanenkamp.

This software is licensed under the same terms as Raku.

About

Given a Supply of bytes, provides a Supply of parsed HTTP requests or responses

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages