You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a request is proxied it follows two different pipelines ([available here](https://github.com/yawnt/caronte/tree/master/lib/caronte/passes))
35
+
which apply trasformations to both the `req` and `res` object.
36
+
The first pipeline (ingoing) is responsible for the creation and manipulation of the stream that connects your client to the target.
37
+
The second pipeline (outgoing) is responsible for the creation and manipulation of the stream that, from your target, returns datas
38
+
to the client.
39
+
40
+
You can easily add a `pass` (stages) into both the pipelines (XXX: ADD API).
41
+
42
+
In addition, every stage emits a corresponding event so introspection during the process is always available.
0 commit comments