Ecosyste.ms: Packages

An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 4.8% on proxy.golang.org
Top 4.2% dependent packages on proxy.golang.org
Top 2.9% dependent repos on proxy.golang.org
Top 6.6% forks on proxy.golang.org

proxy.golang.org : github.com/9seconds/httransform/v2

httransform is a framework to build a various MITM proxies. This framework is built using fasthttp (https://github.com/valyala/fasthttp) library to provide fast processing of HTTP requests. Also, as fasthttp it actively uses object pooling to reduce the pressure on GC and possibly save a little bit of memory. Unlike its alternative, goproxy (https://github.com/elazarl/goproxy), httransform does not have disadvantages of using net/http: we can keep header case and order. This framework provides features to build robust high-performant HTTP and HTTPS proxies (with the support of the CONNECT method and TLS certificate generation on-the-fly), it supports middleware layers and custom executors. It is also able to correctly process different http connection upgrades like websocket support. Layers are middlewares which do preprocess of the requests or postprocessing of the response. The thing about layers is that you have to define both directions: to executor and from executor. We encourage to create layers which know as less as possible about each other. If, for example, you raise an error in one layer, this error has to be processed only there, other layers should ignore that. This framework does not restrict any deviations from this rule, but you'll get more simple and clean design if you treat layers as independent as possible. An executor is some function which converts HTTP request to response. In the most simple case, an executor is HTTP client. But also, you can convert the request to JSON, send it somewhere, get ProtoBuf back and convert it to HTTP response. Or you can play with NATS. Or 0mq. Or RabbitMQ. You got the idea. Executor defines the function which converts HTTP request to HTTP response. If connection upgrade is required, this is a responsibility of the executor to make it. If any of your layers creates an error, executor won't be called. HTTP response will be converted to 500 response and error would be propagated by the chain of layers back. Just take a look here: As you see, the request goes through the all layers forward and backward. This is a contract of this package. 1. Interface of HTTP proxy 2. Interface of HTTPS proxy (e.g CONNECT method) 3. CONNECT method can be used to establish plain TCP tunnels. Upgrade to TLS is not mandatory. 4. Both HTTP request and responses can be processed: headers are added/removed/changed and so on. 5. TCP connection upgrade is supported. Websockets are supported. But by default you can't interfere: you can just watch.

Registry - Source - Documentation - JSON
purl: pkg:golang/github.com/9seconds/httransform/v2
Keywords: http-proxies, mitm, mitmproxy, proxy
License: MIT
Latest release: almost 3 years ago
First release: over 3 years ago
Namespace: github.com/9seconds/httransform
Dependent packages: 2
Dependent repositories: 3
Stars: 53 on GitHub
Forks: 9 on GitHub
Docker dependents: 1
Docker downloads: 16
See more repository details: repos.ecosyste.ms
Last synced: 16 days ago

    Loading...
    Readme
    Loading...