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

[DEPRECATED] Angel hook to compress resonses in a variety of formats.

License

Notifications You must be signed in to change notification settings

angel-dart-archive/compress

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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));
}

About

[DEPRECATED] Angel hook to compress resonses in a variety of formats.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages