22 lines
709 B
Dart
22 lines
709 B
Dart
|
|
// Copyright (c) 2014, 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.dart';
|
||
|
|
import 'package:shelf/shelf_io.dart' as shelf_io;
|
||
|
|
|
||
|
|
void main() async {
|
||
|
|
var handler =
|
||
|
|
const Pipeline().addMiddleware(logRequests()).addHandler(_echoRequest);
|
||
|
|
|
||
|
|
var server = await shelf_io.serve(handler, 'localhost', 8080);
|
||
|
|
|
||
|
|
// Enable content compression
|
||
|
|
server.autoCompress = true;
|
||
|
|
|
||
|
|
print('Serving at http://${server.address.host}:${server.port}');
|
||
|
|
}
|
||
|
|
|
||
|
|
Response _echoRequest(Request request) =>
|
||
|
|
Response.ok('Request for "${request.url}"');
|