Socket
Socket
Sign inDemoInstall

feed-finder

Package Overview
Dependencies
34
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    feed-finder

Stubborn feed auto discovery tool


Version published
Maintainers
1
Install size
653 kB
Created

Readme

Source

feed-finder

Stubborn feed auto discovery tool.

There wasn't any satisfyingly determined feed discover tool in npm, so here it is. Highly inspired by damog's feedbag.

Install

For programmatic use in your project:

npm install --save feed-finder

For cli usage:

npm install --global feed-finder

Usage

For programmatic usage see API section.

CLI

CLI command takes only one input as domain:

$> feed-finder mashable.com

Search results for "mashable.com":
  - http://feeds.mashable.com/Mashable
  - http://mashable.com/feed/

If input misses a dot, some popular tld's appended to input. This takes slightly longer time.

$> feed-finder wired

Search results for "wired":
  - http://www.wired.com/feed/
  - http://www.wired.com/feed/podcast
  - http://wired.com/?feed=rss
  - http://wired.com/feed/
  - http://wired.com/feed/rss/
  - http://wired.com/services/rss/
  - http://wired.net/?feed=rss
  - http://www.wired.co.uk/news/rss
  - http://www.wired.co.uk/reviews/rss
  - http://www.wired.co.uk/podcast/rss
  - http://www.wired.co.uk/rss
  - http://wired.co.uk/rss
  - http://wired.co.uk/podcast/rss
  - http://wired.co.uk/feed/rss/
  - http://wired.co.uk/services/rss/

(Some results are clipped from actual result, as they were bloating too much)

Options
--no-guess

Disables known feed endpoint checks, only looks feeds in input url.

--no-www-switch

Disables www switch. By default feed-finder adds missing www and looks for that domain too, and removes www when it's provided.

API

var feedFinder = require('feed-finder'),
    feedRead = require('feed-read');

feedFinder('mashable.com', function (err, feedUrls) {
    if (err) return console.error(err);

    feedUrls.forEach(function (feedUrl) {
        feedRead(feedUrl, 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).
            //
        });
    });
});

feed-read module is given just for sake of this example. There are numerous feed readers parsers in the wild.

License

ISC (c) Can Kutlu Kınay

Keywords

FAQs

Last updated on 04 Dec 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc