shelf_proxy 1.0.4 copy "shelf_proxy: ^1.0.4" to clipboard
shelf_proxy: ^1.0.4 copied to clipboard

A shelf handler for proxying HTTP requests to another server.

example/example.dart

// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import 'package:shelf/shelf_io.dart' as shelf_io;
import 'package:shelf_proxy/shelf_proxy.dart';

Future<void> main() async {
  final server = await shelf_io.serve(
    proxyHandler('https://dart.cn'),
    'localhost',
    8080,
  );

  print('Proxying at http://${server.address.host}:${server.port}');
}
74
likes
140
pub points
100%
popularity

Publisher

verified publishertools.dart.cn

A shelf handler for proxying HTTP requests to another server.

Repository (GitHub)
View/report issues
Contributing

Topics

#server #shelf

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

http, path, shelf

More

Packages that depend on shelf_proxy