2024-10-12 10:35:14 +00:00
# Protevus Proxy
2021-07-10 04:32:42 +00:00
2024-10-13 01:45:27 +00:00
![Pub Version (including pre-releases) ](https://img.shields.io/pub/v/protevus_proxy?include_prereleases )
2021-06-10 08:47:05 +00:00
[![Null Safety ](https://img.shields.io/badge/null-safety-brightgreen )](https://dart.dev/null-safety)
2024-07-07 15:02:49 +00:00
[![Discord ](https://img.shields.io/discord/1060322353214660698 )](https://discord.gg/3X6bxTUdCM)
2024-10-12 10:35:14 +00:00
[![License ](https://img.shields.io/github/license/dart-backend/protevus )](https://github.com/dart-backend/protevus/tree/master/packages/proxy/LICENSE)
2021-06-10 08:47:05 +00:00
2024-10-12 10:35:14 +00:00
Protevus middleware to forward requests to another server (i.e. `webdev serve` ). Also supports WebSockets.
2016-11-23 22:03:06 +00:00
```dart
2024-10-13 01:45:27 +00:00
import 'package:protevus_proxy/protevus_proxy.dart';
2017-09-24 18:49:18 +00:00
import 'package:http/http.dart' as http;
2016-11-23 22:03:06 +00:00
2021-06-10 08:47:05 +00:00
void main() async {
2019-10-12 15:19:57 +00:00
// Forward requests instead of serving statically.
// You can also pass a URI, instead of a string.
var proxy1 = Proxy('http://localhost:3000');
2018-11-02 11:34:45 +00:00
// handle all methods (GET, POST, ...)
2018-11-09 00:27:50 +00:00
app.fallback(proxy.handleRequest);
2016-11-23 22:03:06 +00:00
}
2017-04-02 02:06:27 +00:00
```
2017-09-24 18:49:18 +00:00
You can also restrict the proxy to serving only from a specific root:
2021-07-10 04:32:42 +00:00
2017-09-24 18:49:18 +00:00
```dart
2019-10-12 15:19:57 +00:00
Proxy(baseUrl, publicPath: '/remote');
2017-09-24 18:49:18 +00:00
```
2018-11-09 00:27:50 +00:00
Also, you can map requests to a root path on the remote server:
2021-07-10 04:32:42 +00:00
2017-09-24 18:49:18 +00:00
```dart
2019-10-12 15:19:57 +00:00
Proxy(baseUrl.replace(path: '/path'));
2017-09-24 18:49:18 +00:00
```
2023-12-24 16:10:10 +00:00
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.