Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
rss-parser
Advanced tools
A simple, light-weight RSS parser. Parse strings, URLs, or files and get a JS object back
rss-parser is a lightweight and easy-to-use library for parsing RSS and Atom feeds in Node.js. It provides a simple API to fetch and parse feeds, making it easy to integrate RSS feed reading functionality into your applications.
Parsing a feed from a URL
This feature allows you to parse an RSS feed from a given URL. The code sample demonstrates how to fetch and parse the feed, then log the title of the feed and each item within it.
const Parser = require('rss-parser');
let parser = new Parser();
(async () => {
let feed = await parser.parseURL('https://example.com/rss');
console.log(feed.title);
feed.items.forEach(item => {
console.log(item.title + ':' + item.link);
});
})();
Parsing a feed from a string
This feature allows you to parse an RSS feed from a raw XML string. The code sample demonstrates how to parse the XML string and log the title of the feed and each item within it.
const Parser = require('rss-parser');
let parser = new Parser();
let xml = `<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>Example RSS Feed</title>
<link>https://example.com/</link>
<description>This is an example RSS feed</description>
<item>
<title>Example Item</title>
<link>https://example.com/example-item</link>
<description>This is an example item</description>
</item>
</channel>
</rss>`;
(async () => {
let feed = await parser.parseString(xml);
console.log(feed.title);
feed.items.forEach(item => {
console.log(item.title + ':' + item.link);
});
})();
Customizing the parser
This feature allows you to customize the parser to include additional fields that are not part of the default RSS/Atom specification. The code sample demonstrates how to include a custom field ('media:content') and log it for each item in the feed.
const Parser = require('rss-parser');
let parser = new Parser({
customFields: {
item: ['media:content']
}
});
(async () => {
let feed = await parser.parseURL('https://example.com/rss');
console.log(feed.title);
feed.items.forEach(item => {
console.log(item.title + ':' + item['media:content']);
});
})();
Feedparser is a robust RSS and Atom feed parsing library for Node.js. It offers more control and customization options compared to rss-parser, but it has a steeper learning curve and requires more boilerplate code to get started.
The rss package is primarily focused on generating RSS feeds rather than parsing them. It allows you to create RSS feeds programmatically, which can be useful if you need to provide RSS feeds for your own content.
xml2js is a general-purpose XML parser for Node.js. While it is not specifically designed for RSS or Atom feeds, it can be used to parse any XML, including RSS feeds. It provides more flexibility but requires more manual handling of the XML structure.
npm install --save rss-parser
bower install --save rss-parser
rss-parser exposes parseURL()
, parseString()
, and parseFile()
functions.
Check out the output format in test/output/reddit.json
var parser = require('rss-parser');
parser.parseURL('https://www.reddit.com/.rss', function(err, parsed) {
console.log(parsed.feed.title);
parsed.feed.entries.forEach(function(entry) {
console.log(entry.title + ':' + entry.link);
})
})
<script src="/bower_components/rss-parser/dist/rss-parser.js"></script>
<script>
RSSParser.parseURL('https://www.reddit.com/.rss', function(err, parsed) {
console.log(parsed.feed.title);
parsed.feed.entries.forEach(function(entry) {
console.log(entry.title + ':' + entry.link);
})
})
</script>
FAQs
A lightweight RSS parser, for Node and the browser
The npm package rss-parser receives a total of 190,759 weekly downloads. As such, rss-parser popularity was classified as popular.
We found that rss-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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.