support the latest version of pkg:http
2 files changed
tree: 5374a69e24ac0e5ccbc37868285cbe7c6e158426
- lib/
- test/
- .gitignore
- .test_config
- .travis.yml
- analysis_options.yaml
- CHANGELOG.md
- codereview.settings
- LICENSE
- pubspec.yaml
- README.md
README.md
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.
import 'package:shelf/shelf_io.dart' as shelf_io;
import 'package:shelf_proxy/shelf_proxy.dart';
void main() {
shelf_io.serve(proxyHandler("https://www.dartlang.org"), 'localhost', 8080)
.then((server) {
print('Proxying at http://${server.address.host}:${server.port}');
});
}