Socket
Socket
Sign inDemoInstall

rss-parser

Package Overview
Dependencies
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rss-parser

A lightweight RSS parser, for Node and the browser


Version published
Weekly downloads
279K
increased by1.67%
Maintainers
1
Weekly downloads
 
Created

What is rss-parser?

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.

What are rss-parser's main functionalities?

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']);
  });
})();

Other packages similar to rss-parser

Keywords

FAQs

Package last updated on 03 Feb 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc