angel3_proxy 4.0.0 copy "angel3_proxy: ^4.0.0" to clipboard
angel3_proxy: ^4.0.0 copied to clipboard

outdated

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

angel3_proxy #

version Null Safety Gitter

License

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

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

void main() async {
  // Forward requests instead of serving statically.
  // You can also pass a URI, instead of a string.
  var proxy1 = Proxy('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(baseUrl, publicPath: '/remote');

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

Proxy(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
45%
popularity

Publisher

verified publisherdukefirehawk.com

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

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

angel3_framework, http, http_parser, path

More

Packages that depend on angel3_proxy