shelf 1.4.2 copy "shelf: ^1.4.2" to clipboard
shelf: ^1.4.2 copied to clipboard

A model for web server middleware that encourages composition and easy reuse.

example/example.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}"');
892
likes
160
pub points
99%
popularity

Publisher

verified publishertools.dart.dev

A model for web server middleware that encourages composition and easy reuse.

Repository (GitHub)
View/report issues
Contributing

Topics

#server #shelf #backend

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

async, collection, http_parser, path, stack_trace, stream_channel

More

Packages that depend on shelf