Popularity
1.9
Declining
Activity
2.3
-
1
1
3

Monthly Downloads: 20
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Text    
Latest version: v0.1.0.0

JSONParser alternatives and similar packages

Based on the "Text" category.
Alternatively, view JSONParser alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of JSONParser or a related project?

Add another 'Text' Package

README

JSONParser

usage:

$ cabal install JSONParser
$ ghci
Prelude> :m + Text.JSONParser Text.Parsec 
Prelude Text.JSONParser Text.Parsec> map (parse parser "") ["{ \"a\t\n\\u007F\" : [true] ,false:{null: -3.2e-5 }}"]
[Right (JObject [(JKeyString "a\t\n\DEL",JList [JSingle (JKeyBool True)]),(JKeyBool False,JObject [(JKeyNull,JSingle (JKeyNum (JNumFraction (-3.2000000000000005e-5))))])])]