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
.
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.
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.
It can read bigints (if you install big-integer
as a JS dependency).
It seems that there is no way to write bigints in JavaScript except for writing your own JSON.stringify
.
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)