aeson-combinators

Aeson combinators for dead simple JSON decoding

https://github.com/turboMaCk/aeson-combinators

Version on this page:0.0.4.0
LTS Haskell 22.14:0.1.2.1
Stackage Nightly 2024-03-28:0.1.2.1
Latest on Hackage:0.1.2.1

See all snapshots aeson-combinators appears in

BSD-3-Clause licensed and maintained by Marek Fajkus
This version can be pinned in stack with:aeson-combinators-0.0.4.0@sha256:7c0d91bf8deb762b56c437d3bf761ebbf308e695c8b1b9db083ae926ee244f1f,2669

Module documentation for 0.0.4.0

Aeson Combinators

Build Status Build Status built with nix

Low overhead value space Decoder on top of Aeson’s Parser for combinator style decoding.

This library is compatible with GHC 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

Decoder a type is a function Value -> Parser a the same as fromJSON member function of FromJSON class. This means there should be near zero overhead. Aeson types and functions are reused where possible. Similarly Encoder a type follow toJSON from ToJSON type class.

License

(c) 2020 Marek Fajkus BSD-3-Clause

Changes

Revision history for aeson-combinators

0.0.4.0 – 2020-10-24

  • Encode module for encoding

0.0.3.0 – 2020-10-11

  • Combinators for dealing with failure
  • oneOf function
  • parseMaybe and parseEither
  • Documentation improvements

0.0.2.1 – 2020-03-08

  • Add README to extra source files

0.0.2.0 – 2020-03-08

  • GHCJS compatibility

0.0.1.1 – 2020-03-01

  • Fixes and improvements in documentation
  • Add source-repository to cabal file

0.0.1.0 – 2020-02-29

  • First version. Released on an unsuspecting world.