Parsing runs entirely in your browser — nothing is uploaded.
RSS and Atom are XML feed formats; most apps would rather consume JSON. This tool parses a feed with the browser's native DOMParser and maps it to a clean JSON object — a channel header plus an items array — so you can drop it straight into JavaScript. No server, no proxy.
| JSON field | RSS 2.0 | Atom |
|---|---|---|
| link | <link> text | <link href> |
| published | <pubDate> | <updated> |
| description | <description> | <summary> |
Because browsers block cross-origin feed fetches (CORS), paste the XML rather than a URL — that keeps the tool fully private and avoids a server proxy.