JSON Feed for Ceylon provides domain objects and a parser for [JSON Feed](https://jsonfeed.org). To use, parse a JSON string using the `ceylon.json` module, and then convert the resultant `JsonObject` to a [[Feed]] as shown in the code below: ```ceylon import ceylon.json { JsonObject, parseJson = parse } import herd.jsonfeed.core { Feed, parseFeed } shared void run() { String rawJson = ...; assert (is JsonObject json = parseJson(rawJson)); Feed feed = parseFeed(json); } ```

Latest Versions

1 versions →
VersionVulnerabilitiesUsagesDate
0.0.x
0.0.0
0
Feb 13, 2021
1 versions →