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);
}
```
Note: this artifact is located at Ceylon repository (https://modules.ceylon-lang.org/maven/1/)
Licenses
| License | URL |
|---|---|