On Air Now
Gold Radio Through the Night 12am - 4am
: Designed to work seamlessly with Elixir's pipe operator ( |> ), allowing for clean and readable data processing pipelines.
: Reduces boilerplate code required to initialize and control zlib streams manually. EXGzip
: Easily compress strings or binaries into Gzip format and decompress Gzip data back into its original form. : Designed to work seamlessly with Elixir's pipe
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) You can add it to your project by including it in your mix
: Clearer function names and standard Elixir error handling (e.g., returning :ok, data or :error, reason ).
is an Elixir library that provides a simple wrapper around the standard Erlang :zlib module to handle Gzip compression and decompression. It is designed to offer a more "Elixir-native" interface for working with Gzip data, making it easier to integrate into modern Elixir projects. Key Features