shelf_gzip 4.1.0 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");
}