platform/README.md

24 lines
760 B
Markdown
Raw Normal View History

2016-11-10 04:28:11 +00:00
# angel_proxy
2016-11-23 22:03:06 +00:00
2017-03-02 03:37:37 +00:00
[![version 1.0.0](https://img.shields.io/badge/version-1.0.0-brightgreen.svg)](https://pub.dartlang.org/packages/angel_proxy)
2017-03-02 03:37:51 +00:00
[![build status](https://travis-ci.org/angel-dart/proxy.svg?branch=master)](https://travis-ci.org/angel-dart/proxy)
2016-11-23 22:03:06 +00:00
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());
}
```