Skip to content
This repository has been archived by the owner on Aug 7, 2018. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 884 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 884 Bytes

DEPRECATED

As of Angel 1.1.0, this package is unnecessary, as the functionality to compress responses has been inlined into the framework itself.

See the migration guide: https://angel-dart.gitbook.io/angel/migration-guide

compress

version 1.0.0+2 build status

Angel hook to compress responses in a variety of formats.

import 'package:angel_framework/angel_framework.dart';
import 'package:angel_compress/angel_compress.dart';
import 'package:lzw/lzw.dart';

main() {
  var app = new Angel();
  
  // GZIP is the easiest to add
  app.responseFinalizers.add(gzip());
  
  // Support any other codec
  app.responseFinalizers.add(compress('lzw', LZW));
}