Popularity
2.4
Declining
Activity
0.0
Stable
0
4
0

Monthly Downloads: 5
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Web     Servant    

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.

Do you think we are missing an alternative of servant-avro or a related project?

Add another 'Servant' Package

README

servant-avro

Build Status

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.