压缩 Deno HTTP压缩中间件。 特征 使用Accept-Encoding标头检测受支持的编码 支持链接算法(例如gzip > deflate ) 创建具有应用压缩的Content-Encoding标头 如果不支持编码,则发送409 Not Acceptable 例子 import { serve } from 'https://deno.land/std@0.90.0/http/server.ts' import { compression } from 'https://deno.land/x/compression/mod.ts' const s = serve ( { port : 3000 } ) for await ( const req of s ) { await compression ( { // Path to file path : 'R