Comment by throw0101d

5 hours ago

People often use "RSS" as a generic term for a web/news feed:

* https://en.wikipedia.org/wiki/Web_feed

But if someone will is actually going to implement a feed, should it be (actual) RSS, or Atom (or JSON Feed)? Are there particular pros/cons/trade-offs for each?

I know that for podcasts we're currently basically "suck" with at least providing RSS (even if there are also other options):

* https://podcasters.apple.com/4115-technical-updates-for-host...

> But if someone will is actually going to implement a feed, should it be (actual) RSS, or Atom (or JSON Feed)?

I’ve been doing JSON feeds exclusively since it came out. Support in readers is pretty good (Universal? Near universal?) and they’re super simple to generate and consume programatically with standard tools in current mainstream programming languages.

When adding to my feed reader, I’ll take whatever and don’t care¹. When generating it myself or consuming via a script, 100% JSON feed.

¹ In practice that means RSS or JSON. I’ve been using RSS for some two decades and never cared for Atom. I don’t have anything against it, I just never saw the need.