houseinthewoods
5 days ago
Finally fixing this page. I really got finish up my webgarden. And also make a button... probably should have done that first
houseinthewoods
1 week ago
Added The Thinking Fox from LotR and Reynardle from Demon Castle Story to THE DUNGEON
rss-list
2 weeks ago
Glad it's useful! If you ever release your aggregator into the wild, give me a shout and I'll link it as a resource.
I have added an RSS feed aggregator to my home page. Why? An unanswerable question
That's so cool! I was thinking of trying to implement something like this too. How did you get it set up?
Thank you! It was pretty straightforward, although there aren't really any bells and whistles. Basically, I have an array of the URLs of all the feeds I want to read, then I fetch all of them, and when the Promise is all settled, I process each response, get the items out of the parsed XML (and I add a tag with the feed's name to each item), sort the list of items by date, then create html blocks for each item to add
to the rss-feed div element. It's kind of just parsing XML and constructing little html element blocks for each entry.
Oh wait, I just realized that the sorting by date is straight up not working right now... I will fix that