Popularity
6.2
Growing
Activity
5.3
-
12
4
4

Monthly Downloads: 45
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Text     JSON     Web     Aeson    
Latest version: v0.0.2.1

aeson-combinators alternatives and similar packages

Based on the "aeson" category.
Alternatively, view aeson-combinators alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of aeson-combinators or a related project?

Add another 'aeson' Package

README

Aeson Combinators

Build Status

This library defines low overhead value space Decoder on top of Aeson's Parser for combinator style decoding.

This library is compatible with GHC 7.6 and later as well as recent versions of GHCJS.

Encoding to JSON is currently not supported but might be added in the future version.

I wrote a blob post describing what this library attempts to solve.

Internals

This library introduces as low overhead over Aeson API as possible. Decoder a type is a function Value -> Parser a same as fromJSON function of FromJSON class. This means there should be near zero overhead. Aeson types and functions are reused where possible.

TODO

  • [x] Documentation
  • [x] Support for more GHC versions
  • [x] Default decoders for Containers
  • [ ] Encoding API

License

(c) 2020 Marek Fajkus BSD-3-Clause


*Note that all licence references and agreements mentioned in the aeson-combinators README section above are relevant to that project's source code only.