Popularity
8.7
Stable
Activity
0.0
Stable
55
4
21

Monthly Downloads: 48
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Web     Http    
Latest version: v0.1.1.0

http-proxy alternatives and similar packages

Based on the "http" category.
Alternatively, view http-proxy alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of http-proxy or a related project?

Add another 'http' Package

README

http-proxy

Build Status

A Haskell library for creating HTTP and HTTPS web proxies.

The aim is to make all proxying operations work in constant space (per connection) so that memory usage scales linearly with the number of concurrent connections and is completely independent of the size of either the POST request body or the response body.

This library relies heavily on the following libraries:

  • wai : A common protocol between web servers and clients.
  • warp : The web servers the proxy application runs in.
  • http-conduit / http-client : Perform the upstream requests.

This is still beta quality.