toxy
toxy copied to clipboard
Hackable HTTP proxy for resiliency testing and simulated network conditions
This example https://github.com/h2non/toxy/blob/master/examples/bandwidth-limit.js or even this simple code: ```js const toxy = require('toxy') const http = require('http'); const proxy = toxy() const rules = proxy.rules const poisons = proxy.poisons proxy...
We want to use toxy behind a corporate proxy for resilience testing of our client for a REST service provided by another institution. We can only access the service through...
This PR resolves #56 . I don't think that was an outgoing only problem but both in and out.
I would like to use single toxy instance to throttle many different APIs. I am trying to set up following: ``` proxy.all("/papyrus") .forward("https://server1") .poison(poisons.latency({ min: 50, max: 2000 })) proxy.all("/gql/*")...
I would like to use single toxy instance to throttle many different APIs. I am trying to set up following: ``` proxy.all("/papyrus") .forward("https://server1") .poison(poisons.latency({ min: 50, max: 2000 })) proxy.all("/gql/*")...
Is there a way I can channel my entire network traffic via toxy, just like the way we do it with tools like charles? Currently, I'm able to forward traffic...
Hi Team, Is it possible that I can throttle network on my iOS app or specific URL? Please help me to understand this, what are the things required for this...
I'm experiencing that I'm unable to delete outgoing poisons after adding them via the HTTP API. I added an outgoing `latency` poison to a route via the HTTP API, resulting...
Thanks for developing rocky and toxy. See attached .md file for details.
Ok, I admit it, I'm totally pimping my PR: (https://github.com/h2non/toxy/pull/57)