Socket
Socket
Sign inDemoInstall

find-rss

Package Overview
Dependencies
65
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    find-rss

find rss feeds


Version published
Weekly downloads
19
decreased by-32.14%
Maintainers
1
Install size
6.84 MB
Created
Weekly downloads
 

Readme

Source

node-find-rss Build StatusTest CoverageCode Climate

NPM

RSS/Atom feed URL Candidates finder

wrapper of htmlparser2

##install

using npm:

npm install find-rss

using package.json:

"find-rss": "*"

Simple To Use: HTTP Address

# CoffeeScript

finder  = require 'find-rss'
finder "http://nikezono.com",(error,response,body)->
  return console.error error if error
  console.log candidates

  # =>
  # [ { sitename: 'nikezono.com'
      rel: 'alternate',
      type: 'application/atom+xml',
      title: 'RSS',
      href: '/atom.xml',
      favicon: 'http://nikezono.com/favicon.ico',
      url: 'http://nikezono.com/atom.xml' } ]

Options

finder = require 'find-rss' finder.setOptions favicon:true # find favicon url(default:true) getDetail:false # get detail property in each atom/rss candidate(default:false)

Keywords

FAQs

Last updated on 02 Dec 2015

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