7 ms·
I posted this lower down, but I'm posting it here again since it also applies to your comment: Luckily there's a whole range of tools dedicated to making your
by enalicho 9y ago
I posted this lower down, but I'm posting it here again since it also applies to your comment:
Luckily there's a whole range of tools dedicated to making your life there a bit easier:
- json-to-elm http://json2elm.com http://json2elm.com
- swagger-elm https://github.com/ahultgren/swagger-elm/ https://github.com/ahultgren/swagger-elm/
- elm-graphql https://github.com/jahewson/elm-graphql https://github.com/jahewson/elm-graphql, https://github.com/jamesmacaulay/elm-graphql https://github.com/jamesmacaulay/elm-graphql
- elm-export https://hackage.haskell.org/package/elm-export https://hackage.haskell.org/package/elm-export
And so on :) While it would be nice to solve Json Decoders in a better way, these solutions are very helpful for the time being. Long term, I personally believe the right route is hard to decide on. We could go with json-decoders being part of the language and compiler itself. We could generate decoders from type aliases. Or some template solution like template Haskell. Or tagged unions like Go. The issue is that decoders are not a blocker to people who write a lot of Elm. They make me sad, but they're not a blocker. That means that the solution is not such a high priority.