tree: 08f6987d8fd681c34e9b0323fa250c4b38e33981 [path history] [tgz]
  1. example/
  2. lib/
  3. test/
  4. CHANGELOG.md
  5. LICENSE
  6. mono_pkg.yaml
  7. pubspec.yaml
  8. README.md
pkgs/shelf_proxy/README.md

pub package package 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.

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}');
}