Popularity
4.1
Declining
Activity
0.0
Stable
7
3
1

Monthly Downloads: 4
Programming language: Haskell
License: MIT License
Tags: Web     Vinyl    

vinyl-json alternatives and similar packages

Based on the "Web" category.
Alternatively, view vinyl-json alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of vinyl-json or a related project?

Add another 'Web' Package

README

vinyl-json

Automatic json instances for Data.Vinyl

Take a look!

example_json = "{\"name\": \"jon\", \"job\":\"Code\", \"age\":42, \"things\":[1,2,3] }"

parsed_example :: Maybe (PlainRec '[("name" ::: Text),
                                    ("job"  ::: Text),
                                    ("age"  ::: Int),
                                    ("things" ::: [Int])])
parsed_example = decode example_json

At the moment, it only works for PlainRecs but more might happen in the future.