afire_compress 0.1.1-alpha

🦄 afire middleware to compress outgoing HTTP traffic
Documentation

afire-compress

🦄 afire middleware to compress outgoing HTTP traffic.

Supports Gzip, Deflate, and Brotli. Make sure this is the first middleware added to a server.

Example

use afire::{Method, Response, Server};
use afire_compress::{Compress, CompressType};

fn main() {
    let mut server = Server::new("localhost", 8080);

    // Add Compressor
    Compress::new().attach(&mut server);

    server.route(Method::GET, "/", |_| Response::new().text("Hello World"));

    server.start().unwrap();
}