Created
September 9, 2021 16:34
-
-
Save RyanHirsch/2c4f5d446b0f9f0288e75415729bd7db to your computer and use it in GitHub Desktop.
`npm i [email protected]`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fetch = require("node-fetch") | |
const {parseFeed} = require("podcast-partytime") | |
fetch("https://podnews.net/clock-rss") | |
.then(resp => resp.text()) | |
.then(xml => parseFeed(xml)) | |
.then(console.log) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { parseFeed } from "podcast-partytime"; | |
import fetch from "node-fetch"; | |
fetch("https://podnews.net/clock-rss") | |
.then((resp) => resp.text()) | |
.then((xml) => parseFeed(xml)) | |
.then(console.log); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment