angel_proxy 2.1.1 copy "angel_proxy: ^2.1.1" to clipboard
angel_proxy: ^2.1.1 copied to clipboard

outdated

Angel middleware to forward requests to another server (i.e. pub serve).

proxy #

Pub build status

Angel middleware to forward requests to another server (i.e. webdev serve). Also supports WebSockets.

import 'package:angel_proxy/angel_proxy.dart';
import 'package:http/http.dart' as http;

main() async {
  // ...
  
  var client = http.Client();
  
  // Forward requests instead of serving statically
  var proxy1 = Proxy(client, Uri.parse('http://localhost:3000'));
  
  // handle all methods (GET, POST, ...)
  app.fallback(proxy.handleRequest);
}

You can also restrict the proxy to serving only from a specific root:

Proxy(client, baseUrl, publicPath: '/remote');

Also, you can map requests to a root path on the remote server:

Proxy(client, baseUrl.replace(path: '/path'));

Request bodies will be forwarded as well, if they are not empty. This allows things like POST requests to function.

For a request body to be forwarded, the body must not have already been parsed.

0
likes
0
pub points
6%
popularity

Publisher

verified publisherangel-dart.dev

Angel middleware to forward requests to another server (i.e. pub serve).

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

angel_framework, http, http_parser, path

More

Packages that depend on angel_proxy