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); } ```
Version0.0.0compared with
No previous version available

No previous version available to compare.