platform/README.md
thosakwe fc05e85bfc +3
2016-11-27 19:53:27 -05:00

24 lines
No EOL
674 B
Markdown

# angel_proxy
![version 1.0.0-dev+3](https://img.shields.io/badge/version-1.0.0--dev+3-red.svg)
![build status](https://travis-ci.org/angel-dart/proxy.svg?branch=master)
Angel middleware to forward requests to another server (i.e. pub serve).
Based on [this repo](https://github.com/agilord/http_request_proxy).
```dart
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());
}
```