
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
podcast-partytime
Advanced tools
[](https://www.npmjs.com/package/podcast-partytime)
Podcast feed parser, originally extracted from podcast index - https://github.com/Podcastindex-org/aggregator/tree/master/partytime. It is up to you, the consumer of this package, to fetch the feed which needs to be parsed. When fetching the feed YOU SHOULD INCLUDE A PROPER USER-AGENT.
This package will also identify new namespace elements and call out the "phases" implemented by the feed in a pc20support
element.
By default, this will produce log messages that are warnings or errors, but this can be controlled via an environment variable, PARTYTIME_LOG
can be set to whatever log level you may want.
npm install podcast-partytime
import fetch from "node-fetch";
import pt from "podcast-partytime";
// Check CORS support
pt.checkFeedByUri("https://www.spreaker.com/show/3128218/episodes/feed").then(console.log);
fetch("http://mp3s.nashownotes.com/pc20rss.xml", {
headers: {
"user-agent": "partytime/example",
},
})
.then((resp) => resp.text())
.then((xml) =>
console.log(
pt.checkFeedByObject({
uri: "http://mp3s.nashownotes.com/pc20rss.xml",
feedObject: pt.parseFeed(xml),
})
)
);
// Parse Feed
fetch("http://mp3s.nashownotes.com/pc20rss.xml", {
headers: {
"user-agent": "partytime/example",
},
})
.then((resp) => resp.text())
.then((xml) => console.log(pt.parseFeed(xml)));
const fetch = require("node-fetch");
const pt = require("podcast-partytime");
// Check CORS support
pt.checkFeedByUri("https://www.spreaker.com/show/3128218/episodes/feed").then(console.log);
fetch("http://mp3s.nashownotes.com/pc20rss.xml")
.then((resp) => resp.text())
.then((xml) =>
console.log(
pt.checkFeedByObject({
uri: "http://mp3s.nashownotes.com/pc20rss.xml",
feedObject: pt.parseFeed(xml),
})
)
);
// Parse Feed
fetch("http://mp3s.nashownotes.com/pc20rss.xml")
.then((resp) => resp.text())
.then((xml) => console.log(pt.parseFeed(xml)));
The sample feeds below were chosen for their varied nature. Including things like non-traditional titles, different publishers, and season usage.
Update dependencies (person enum and valid license list) via yarn deps
or npm run deps
.
FAQs
[](https://www.npmjs.com/package/podcast-partytime)
We found that podcast-partytime demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.