Skip to content

Commit f5b95e1

Browse files
authored
docs(response interceptor): update links (#525)
1 parent 115e209 commit f5b95e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ Intercept responses from upstream with `responseInterceptor`. (Make sure to set
488488

489489
Responses which are compressed with `brotli`, `gzip` and `deflate` will be decompressed automatically. The response will be returned as `buffer` ([docs](https://nodejs.org/api/buffer.html)) which you can manipulate.
490490

491-
With `buffer`, response manipulation is not limited to text responses (html/css/js, etc...); image manipulation will be possible too. ([example](https://github.com/chimurai/http-proxy-middleware/blob/response-interceptor/recipes/response-interceptor.md#manipulate-image-response))
491+
With `buffer`, response manipulation is not limited to text responses (html/css/js, etc...); image manipulation will be possible too. ([example](https://github.com/chimurai/http-proxy-middleware/blob/master/recipes/response-interceptor.md#manipulate-image-response))
492492

493493
NOTE: `responseInterceptor` disables streaming of target's response.
494494

@@ -513,7 +513,7 @@ const proxy = createProxyMiddleware({
513513
});
514514
```
515515

516-
Check out [interception recipes](https://github.com/chimurai/http-proxy-middleware/blob/response-interceptor/recipes/response-interceptor.md#readme) for more examples.
516+
Check out [interception recipes](https://github.com/chimurai/http-proxy-middleware/blob/master/recipes/response-interceptor.md#readme) for more examples.
517517

518518
## Working examples
519519

@@ -523,7 +523,7 @@ View and play around with [working examples](https://github.com/chimurai/http-pr
523523
- express ([example source](https://github.com/chimurai/http-proxy-middleware/tree/master/examples/express/index.js))
524524
- connect ([example source](https://github.com/chimurai/http-proxy-middleware/tree/master/examples/connect/index.js))
525525
- WebSocket ([example source](https://github.com/chimurai/http-proxy-middleware/tree/master/examples/websocket/index.js))
526-
- Response Manipulation ([example source](https://github.com/chimurai/http-proxy-middleware/blob/master/response-interceptor/examples/response-interceptor/index.js))
526+
- Response Manipulation ([example source](https://github.com/chimurai/http-proxy-middleware/blob/master/examples/response-interceptor/index.js))
527527

528528
## Recipes
529529

0 commit comments

Comments
 (0)