Has expanded from its original purpose from a JSON mapping library, so I've updated the name to Percyqaz.Data
I am too lazy to update documentation right now (given that only my projects depend on this), but below is the README from a couple years ago
Yet another JSON library, specificially for my F# JSON needs which were not met by JSON.Net or Chiron
- Parsing and writing:
- JSON text is parsed using FParsec into an F# discriminated union/tree.
- The tree can be formatted back as valid JSON text.
- Encoding and decoding:
- Each type has a hand-made codec that maps between it and the JSON tree.
- Ease of use:
- Many important codecs are ready out-of-the-box.
- It is simple to hand-write your own codecs for types.
- Records and DUs can be tagged with an attribute to auto-generate a codec.
- No care for how the outputted JSON text is formatted (validity is the only concern)
- Null-safety: You can't deserialise JSON to get null for non-nullable F# objects etc
- Support for all simple F# types out-of-box
- Simple code: Exceptions are thrown internally instead of railroading/result types
- Easily extensible: You can add codecs for types as you need
You can get this package on NuGet
DOCUMENTATION IS CURRENTLY OUTDATED FOR VERSION 3.0
IM LAZY AND ALSO NOBODY IS ACTIVELY USING THIS SO NOT A PRIORITY
You should read the documentation here (it's not long)