shelf_proxy 0.1.0+1 copy "shelf_proxy: ^0.1.0+1" to clipboard
shelf_proxy: ^0.1.0+1 copied to clipboard

outdatedDart 1 only

A shelf handler for proxying requests to another server.

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() {
  shelf_io.serve(proxyHandler("https://www.dartlang.org"), 'localhost', 8080)
      .then((server) {
    print('Proxying at http://${server.address.host}:${server.port}');
  });
}
74
likes
0
pub points
100%
popularity

Publisher

verified publishertools.dart.dev

A shelf handler for proxying requests to another server.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http, path, shelf

More

Packages that depend on shelf_proxy