JsonCodec
JsonCodec copied to clipboard
JSON combinator library for BuckleScript/Reason
First, thanks for all of your hard work on this. Useful error messages are perhaps the most important feature of any serialization/deserialization framework. What sorts of errors does this library...
Just some nice examples in the `README.md` would go a long way. Love the idea of this library by the way ❤️. One thing I was hoping to find: How...
Hello @johnwright. This JSON library looks interesting! I'll read its paper, but I was wondering about its tradeoffs too (perf, size, theoretical blockers, etc.)? The idea of having a free...
It's common in JSON to use arrays as tuples, e.g. ```json { "pairs": [ [1, 2], [3, 4] ] } ``` To support this pattern, add `pair`, `triple`, `quad` codecs...