tree: 10a0f93e0409d6524cdb833e63c37de198148c8d [path history] [tgz]
  1. example/
  2. lib/
  3. analysis_options.yaml
  4. BUILD.gn
  5. CHANGELOG.md
  6. LICENSE
  7. pubspec.yaml
  8. README.md
shelf_proxy/README.md

Proxy for Shelf

Build Status

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