Skip to main content
Module

x/rss/dev_fetch.ts

📰 Deno module for deserializing RSS or ATOM XML feeds into typed objects
Very Popular
Go to Latest
File
import { parseFeed } from "./mod.ts";
[ "http://rss.slashdot.org/Slashdot/slashdotMain", "https://www.fz.se/feeds/forum", "https://developers.googleblog.com/feeds/posts/default", "https://medium.com/feed/invironment/tagged/food"].forEach(async (feedUrl, index, arr) => { const response = await fetch(feedUrl); const xml = await response.text(); await parseFeed(xml); console.log(`✔ Parsed ${feedUrl}`);});