
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
feed-read-parser
Advanced tools
Node.js module for parsing RSS and ATOM feeds into a common article object.
This module is forked from feed-read npm module. It aims to fix old bugs in the forked version.
$ npm install feed-read-parser
var feed = require("feed-read-parser");
feed(url, callback)
Fetch a feed.
feed("http://craphound.com/?feed=rss2", function(err, articles) {
if (err) throw err;
// Each article has the following properties:
//
// * "title" - The article title (String).
// * "author" - The author's name (String).
// * "link" - The original article link (String).
// * "content" - The HTML content of the article (String).
// * "published" - The date that the article was published (Date).
// * "feed" - {name, source, link}
//
});
feed(array, callback)
Fetch several feeds thanks to a given array
var rss = [
'http://www.eurogamer.net/?format=rss',
'http://fr.ign.com/feed.xml',
'http://www.gamekult.com/feeds/actu.html'
]
feed(rss, function(err, articles) {
if (err) throw err;
// articles is an array of article with properties described above.
});
feed.rss(rss_string, callback)
Parse a string of XML as RSS.
The callback receives (err, articles)
.
feed.atom(atom_string, callback)
Parse a string of XML as ATOM.
The callback receives (err, articles)
.
feed.identify(xml_string)
// => "atom", "rss", or falseIdentify what type of feed the XML represents.
Returns false
when it is neither RSS or ATOM.
See LICENSE.
FAQs
a node ATOM and RSS feed parser
We found that feed-read-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.