shelf_gzip 4.1.0 copy "shelf_gzip: ^4.1.0" to clipboard
shelf_gzip: ^4.1.0 copied to clipboard

Shelf middleware to GZIP encoding responses, with compression level and compression scope by content-type.

example/shelf_gzip_example.dart

import 'dart:io';

import 'package:path/path.dart' show join, dirname;
import 'package:shelf/shelf.dart' as shelf;
import 'package:shelf/shelf_io.dart' as shelf_io;
import 'package:shelf_gzip/shelf_gzip.dart';
import 'package:shelf_static/shelf_static.dart';

void main() async {
  // Assumes the server lives in bin/ and that `pub build` ran
  var pathToBuild =
      join(dirname(Platform.script.toFilePath()), '..', 'build/web');
  var staticHandler =
      createStaticHandler(pathToBuild, defaultDocument: 'index.html');

  var portEnv = Platform.environment['PORT'];
  var port = portEnv == null ? 9999 : int.parse(portEnv);

  var handler = const shelf.Pipeline()
      .addMiddleware(gzipMiddleware) // Adds the Gzip encoding `Middleware`.
      .addHandler(staticHandler);

  await shelf_io.serve(handler, '0.0.0.0', port);

  print("Serving $pathToBuild on port $port");
}
6
likes
140
pub points
80%
popularity

Publisher

verified publisherjpryan.me

Shelf middleware to GZIP encoding responses, with compression level and compression scope by content-type.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

shelf

More

Packages that depend on shelf_gzip