Exgzip 〈HIGH-QUALITY — 2024〉

You can add it to your project by including it in your mix.exs dependencies: defp deps do [ :ex_gzip, "~> 0.1.0" ] end Use code with caution. Copied to clipboard Once installed, you can perform basic operations: : EXGzip.compress("your data") Decompressing : EXGzip.decompress(compressed_binary)

While the underlying Erlang :zlib module is powerful, its API can be low-level and cumbersome for developers accustomed to Elixir's syntax. bridges this gap by providing: EXGzip

: It follows standard library guidelines for naming and documentation, ensuring it feels consistent with other packages in the Hex ecosystem . Getting Started You can add it to your project by including it in your mix

: Easily compress strings or binaries into Gzip format and decompress Gzip data back into its original form. EXGzip