The Protevus Platform: Unified Full-Stack Development https://protevus.com
Find a file
2017-04-24 16:46:52 -04:00
.idea 1.0.3 2017-04-22 14:46:00 -04:00
lib 1.0.6 2017-04-24 16:46:52 -04:00
test Fixed gzipping permanently 2017-04-22 15:00:38 -04:00
.analysis-options 1.0.3 2017-04-22 14:46:00 -04:00
.gitignore Works 2016-11-23 17:03:06 -05:00
.travis.yml Works 2016-11-23 17:03:06 -05:00
LICENSE Initial commit 2016-11-09 23:28:11 -05:00
pubspec.yaml 1.0.6 2017-04-24 16:46:52 -04:00
README.md 1.0.6 2017-04-24 16:46:52 -04:00

angel_proxy

version 1.0.6 build status

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

import 'package:angel_proxy/angel_proxy.dart';

main() async {
  // ...
  
  // Forward requests instead of serving statically
  await app.configure(new ProxyLayer('localhost', 3000));
  
  // Or, use one for pub serve.
  //
  // This automatically deactivates itself if the app is
  // in production.
  await app.configure(new PubServeLayer());
}

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