up vote 13 down vote favorite
1
share [g+] share [fb]

There are about a dozen JSON packages on Hackage for Haskell. How do I know which package I should use? How do I get a popular opinion?

Are there any statistics on which package is being used the most, downloaded the most, etc.?

link|improve this question
Knowing Haskell you could probably roll your own in less than 100 lines. – ChaosPandion Sep 7 '10 at 23:46
2  
Knowing Haskell, there is a well-tested library that can be installed with one line of typing in your shell. – jrockway Sep 13 '10 at 18:45
1  
Currently, hackage.haskell.org/package/aeson seems to be the library ppl are converging to... – hvr Jul 24 '11 at 13:16
feedback

2 Answers

According to this list, RJson has been downloaded more often than json, but json is by far the most used by other libraries on Hackage, with 77 reverse dependencies (33 direct and 44 indirect), versus 5 for JSONb in second.

link|improve this answer
I would second the use of json; I found it nice and easy to use. – Robert Massaioli Sep 11 '10 at 3:39
feedback

Choose by others' dependencies

If you use one of the new Haskell web frameworks, you may consider using the same json library as the framework is using. From the reverse dependencies it seems that the pairing is:

  • Yesod: JSONb
  • Happstack: RJson
  • On-a-Horse: ???

And a lot of packages use json.

Choose by features

You may also choose to use a package according to its features.

Consider using JSONb if you are a ByteStrings' user. It uses AttoParsec instead of the usual Parsec, so it might be faster (but measure it first).

RJson is doing some clever tricks to serialize nested records automatically.

YAJL offers bindings to yajl, a fast parser written in C. But be careful: the original yajl is BSD, but Haskell YAJL is GPL-v3.

json is, probably, a safe choice.

link|improve this answer
Yesod no longer uses JSONb, it uses aeson-native. See packdeps.haskellers.com/reverse/aeson-native – pdxleif Sep 9 '11 at 22:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.