The Protevus Platform: Unified Full-Stack Development https://protevus.com
Find a file
2018-11-02 12:34:45 +01:00
.idea 1.1.0-alpha 2017-09-24 14:49:18 -04:00
.vscode 1.0.8 2017-06-20 15:31:35 -04:00
example [breaks api] Proxy no longer takes app as first parameter 2018-11-02 12:20:00 +01:00
lib Build URL using provided protocol 2018-11-02 12:24:22 +01:00
test [breaks api] Proxy no longer takes app as first parameter 2018-11-02 12:20:00 +01:00
.gitignore ignore .dart_tool 2018-03-20 14:04:23 -04:00
.travis.yml Works 2016-11-23 17:03:06 -05:00
analysis_options.yaml 1.1.0-alpha 2017-09-24 14:49:18 -04:00
CHANGELOG.md Bump to 1.1.1 2018-03-20 14:01:10 -04:00
LICENSE Initial commit 2016-11-09 23:28:11 -05:00
pubspec.yaml Migrating to dart2 & angel2 2018-11-02 05:22:32 +01:00
README.md Updated README 2018-11-02 12:34:45 +01:00

proxy

Pub build status

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

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, 'http://localhost:3000');
  // or split: Proxy(client, 'localhost', port: 8080, protocol: 'http');
  
  // handle all methods (GET, POST, ...)
  app.all('*', proxy.handleRequest);
}

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

Proxy(client, '<host>', publicPath: '/remote');

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

Proxy(client, '<host>', mapTo: '/path');

If your app's keepRawRequestBuffers is true, then request bodies will be forwarded as well, if they are not empty. This allows things like POST requests to function.