rss icon indicating copy to clipboard operation
rss copied to clipboard

📰 Deno module for deserializing RSS or ATOM XML feeds into typed objects

Results 5 rss issues
Sort by recently updated
recently updated
newest added

Suggestion: Extend the scope of this library and provide a serialization function with the option to target feed type. (feedObject, feedType) => XML-document.

enhancement

To support GB sized XML files we need to change to a streaming approach. The input should be chunked and the output should be event driven where every single news...

enhancement

**Changes**: https://www.jsonfeed.org/version/1.1/#changes Relevant updates: - `author` is deprecated. Use `authors`, which is an array of `author`. - Added `language` field. - `id` is restricted to strings. PS: Thanks for your...

the type of [`FeedEntry.id`][1] is `string`, but I was given an entry with an `undefined` id. [1]: https://jsr.io/@mikaelporttila/rss/1.1.0/src/types/feed.ts#L37 Here's the JSON.stringify representation of the object I did get back: ```json...

The [`Feed.entries`][1] type returns a `FeedEntry` array, but the FeedEntry type isn't exported. [1]: https://jsr.io/@mikaelporttila/[email protected]/doc/~/Feed#property_entries I seem to be able to work around it a bit with: ```typescript export *...