PlugContrib
A collection of useful plugs for your plug/phoenix based web apps.
Current Plugs
- PlugContrib.Gzip to gzip your responses
Installation
The package can be installed as:
Add
plug_contrib
to your list of dependencies inmix.exs
:def deps do [{:plug_contrib, "~> 0.1.0"}] end ```
Ensure
plug_contrib
is started before your application:def application do [applications: [:plug_contrib]] end ```