Popularity
8.7
Stable
Activity
0.0
Declining
53
3
21
Monthly Downloads: 25
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
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.
-
http-api-data
Converting to/from HTTP API data like URL pieces, headers and query parameters. -
http-reverse-proxy
Reverse proxy HTTP requests, either over raw sockets or with WAI -
wai-cors
A Haskell implementation of Cross-Origin resource sharing (CORS) for Wai -
http-conduit-downloader
HTTP downloader tailored for web-crawler needs -
http-grammar
Attoparsec-based parsers for the RFC-2616 HTTP grammar rules. -
http-common
Base Haskell types used by a variety of HTTP clients and servers.
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of http-proxy or a related project?
README
http-proxy
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.