Popularity
3.1
Declining
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.
-
servant-websockets
Small library providing WebSocket endpoints for servant. -
servant-polysemy
A Haskell library: Utilities for using servant in a polysemy stack. -
servant-auth-wordpress
Authenticate Wordpress Cookies & Nonces in Haskell Requests. -
http-rfc7807
Problem Details for HTTP APIs as defined by RFC7807
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
Promo
www.influxdata.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.