All Projects → ggkovacs → rss-finder

ggkovacs / rss-finder

Licence: MIT license
Find rss feeds url

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to rss-finder

rss-to-email
Generate HTML emails from your RSS feeds.
Stars: ✭ 92 (+48.39%)
Mutual labels:  rss
insertionfinder
fewestmov.es
Stars: ✭ 13 (-79.03%)
Mutual labels:  finder
FeedReader
C# RSS and ATOM Feed reader library. Supports RSS 0.91, 0.92, 1.0, 2.0 and ATOM. Tested with multiple languages and feeds.
Stars: ✭ 221 (+256.45%)
Mutual labels:  rss
github-issues-rss
convert github issues to rss
Stars: ✭ 25 (-59.68%)
Mutual labels:  rss
Gofr
Feed Reader for App Engine (Google Reader clone)
Stars: ✭ 53 (-14.52%)
Mutual labels:  rss
blog-template
Template for the Jekyll-powered elementary blog
Stars: ✭ 34 (-45.16%)
Mutual labels:  rss
meta-extractor
Super simple and fast html page meta data extractor with low memory footprint
Stars: ✭ 38 (-38.71%)
Mutual labels:  rss
Tweet-2-RSS
Convert your Twitter API requests to RSS Feeds
Stars: ✭ 14 (-77.42%)
Mutual labels:  rss
docker-ttrss
Tiny Tiny RSS feed reader as a Docker image.
Stars: ✭ 55 (-11.29%)
Mutual labels:  rss
loread
RSS Android client,support Inoreader, Feedly, TinyTinyRSS, Fever。
Stars: ✭ 60 (-3.23%)
Mutual labels:  rss
bye-bye-feedly
Export your read later (formerly saved/favorited) articles from feedly, and access them from a simple reader.
Stars: ✭ 42 (-32.26%)
Mutual labels:  rss
bolt.nvim
⚡ Ultrafast multi-pane file manager for Neovim with fuzzy matching
Stars: ✭ 100 (+61.29%)
Mutual labels:  finder
rss-for-the-rest-of-us
A simple RSS reader built on Laravel. For the rest of us.
Stars: ✭ 16 (-74.19%)
Mutual labels:  rss
miniflux-sidekick
A sidekick for Miniflux, filter out items by regex or tags. Compatible with killfiles. 🔪
Stars: ✭ 34 (-45.16%)
Mutual labels:  rss
json-feed-viewer
The world's first JSON feed viewer 🥇
Stars: ✭ 40 (-35.48%)
Mutual labels:  rss
inkrss
Notify when rss feeds are updated | RSS 更新通知
Stars: ✭ 234 (+277.42%)
Mutual labels:  rss
simplepie-ng
Don't use this yet.
Stars: ✭ 41 (-33.87%)
Mutual labels:  rss
awesome-rss-feeds
Awesome RSS feeds - A curated list of RSS feeds (and OPML files) used in Recommended Feeds and local news sections of Plenary - an RSS reader, article downloader and a podcast player app for android
Stars: ✭ 114 (+83.87%)
Mutual labels:  rss
django-feed-reader
An RSS/Atom/JSONFeed reading + storing library for Django
Stars: ✭ 21 (-66.13%)
Mutual labels:  rss
feed2maildir
📬 Read RSS/Atom feeds in your favourite, maildir-compatible email client.
Stars: ✭ 15 (-75.81%)
Mutual labels:  rss

RSS Finder NPM version Build Status Dependency Status Coverage Status

Version: 2.1.5

Installation

Run npm install rss-finder

Usage

'use strict';

var rssFinder = require('rss-finder');

rssFinder('http://www.nytimes.com').then(function(res) {
    console.log(res);
}).catch(function(err) {
    console.log(err);
});

// or

rssFinder({
    url: 'http://www.nytimes.com'
}).then(function(res) {
    console.log(res);
}).catch(function(err) {
    console.log(err);
});

Response

{
    site: {
        title: 'The New York Times - Breaking News, World News & Multimedia',
        favicon: 'http://static01.nyt.com/favicon.ico',
        url: 'http://www.nytimes.com'
    },
    feedUrls:[{
        title: 'RSS',
        url: 'http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml'
    }]
}

API

rssFinder(options)

options

Type: String | Object

url

Type: String

gotOptions

This object is passed to got options directly (refer to got documentation).

feedParserOptions

This object is passed to feedparser options directly (refer to feedparser documentation).

License

MIT © 2021 Gergely Kovács ([email protected])

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].