Note: This is a fork of simple-json (MIT Licence).
import Yoga.JSON as JSON
serialised :: String
serialised =
JSON.writeJSON { first_name: "Lola", last_name: "Flores" }
Check out the tests for how to encode/decode increasingly complex types.
purescript-yoga-json
is almost (read below if you use variants) a drop-in replacement for purescript-simple-json
. Just change the imports from Simple.JSON
to Yoga.JSON
.
yoga-json will actually report multiple errors at once in the case of records, objects, and arrays.
There's also a way to make errors more readable with renderHumanError
:
(e.g. Must provide a value of type 'Int' instead of 'Object' at $.a.b.c.d[1]
)
There is an inbuilt codec for Tuple
s thanks to @ursi
yoga-json
represents tuples as arrays in JSON.
There is an inbuilt codec for Either
s.
yoga-json
represents eithers as objects with a type
and a value
tag in JSON.
Both are encoded as ISO8601 strings as spat out by JSDate.toISOString
.
It includes @justinwoo's codecs for en- and decoding generics inspired by simple-json-generics
It is possible to customise the representation of enums, tagged sum types, and untagged sum types via options.
There is an inbuilt codec for BigInt
. Writing a BigInt
however will result in a String. This is a current limitation of JavaScript and the only way around it - it seems - is writing your own JSON.stringify method (which is out of scope of this project).
If you want to emulate simple-json
's format you may use the newtype TaggedVariant
type YourVariantRow = ( a :: Int, b :: String )
type YourVariant = Variant YourVariantRow
x :: YourVariant
x = inj (Proxy :: Proxy "a") 5
-- encoded = writeJSON x
-- ^ Let's say you had this before
-- You can now do:
encoded = writeJSON (TaggedVariant "type" "value" x)