blob: 02da1a3c953e04a8ae7c41e4c37f9acb5bc95a50 [file] [log] [blame]
// 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';
void main() async {
var server = await shelf_io.serve(
proxyHandler('https://dart.dev'),
'localhost',
8080,
);
print('Proxying at http://${server.address.host}:${server.port}');
}