blob: 07b9017cc99d8b8000bc39cb9e3885310e96625c [file] [log] [blame] [view]
[![pub package](https://img.shields.io/pub/v/shelf_proxy.svg)](https://pub.dev/packages/shelf_proxy)
[![package publisher](https://img.shields.io/pub/publisher/shelf_proxy.svg)](https://pub.dev/packages/shelf_proxy/publisher)
## Proxy for Shelf
`shelf_proxy` is a [Shelf][] handler that proxies requests to an external
server. It can be served directly and used as a proxy server, or it can be
mounted within a larger application to proxy only certain URLs.
[Shelf]: https://pub.dev/packages/shelf
```dart
import 'package:shelf/shelf_io.dart' as shelf_io;
import 'package:shelf_proxy/shelf_proxy.dart';
void main() async {
var server = await shelf_io.serve(
proxyHandler("https://dart.dev"),
'localhost',
8080,
);
print('Proxying at http://${server.address.host}:${server.port}');
}
```