Alex

Results 128 issues of Alex
trafficstars

Mongodb uses BSON for storing and representation of the data. https://www.mongodb.com/resources/basics/json-and-bson For the end user BSON is like JSON but with additional types, if we were to create a library...

This PR adds typed tag mapping feature [discussed earlier](https://github.com/garyb/purescript-codec-argonaut/issues/75#issuecomment-2645804785). ``` sum' { "Foo": "foolery" , "Bar": "bar" , "Baz": "bazinga" } { "Foo": ... , "Bar": ... , "Baz": .....

Brand new sum codecs made by @m-bock make writing sum type codecs a breeze. But there is a problem with decoding error reports that in most cases happen to be...

next release

This fixes https://github.com/garyb/purescript-codec-argonaut/issues/66 I updated decode logic of sum codecs, instead of `Either JsonDecodeError rep` it returns `Either JsonDecodeError (Maybe rep)`, meaning that it was not the case, decode error...

Adds support for spago next.

This question is not directly related to this library, but PS row-type "magic" capabilities. Is it possible to code a codec maker for homogeneous record smth like below? ``` homoRecCodec...

Currenlty on any PR/commit CI buids executabls for all platforms, but those artifacts can not be donlowded for example for testing/evaluating purposes by someone who doesn't want to build it...

Sometimes I need to have on a model instance some temporaty property that is not in DB but for example I want to send to the client. The scenario: say...

enhancement
discussion