Popularity
2.4
Stable
Activity
0.0
Stable
0
4
0
Monthly Downloads: 3
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
servant-avro alternatives and similar packages
Based on the "Servant" category.
Alternatively, view servant-avro alternatives based on common mentions on social networks and blogs.
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.com
Do you think we are missing an alternative of servant-avro or a related project?
README
servant-avro
Servant integration for Avro
This package lets you communicate with clients using Avro.
It exposes an Avro
content type, so that instead of having:
type API = "path" :> "to" :> "resource" :> Get '[JSON] a
you can say:
type API = "path" :> "to" :> "resource" :> Get '[Avro] a
or even:
type API = "path" :> "to" :> "resource" :> Get '[JSON, Avro] a
and of course, this will work for all HTTP verbs, and for request bodies, and anywhere else you use a content type in Servant.