Socket
Socket
Sign inDemoInstall

find-rss

Package Overview
Dependencies
72
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.6.0 to 1.6.1

lib/find-rss.js

2

package.json
{
"name": "find-rss",
"description": "find rss feeds",
"version": "1.6.0",
"version": "1.6.1",
"author": "nikezono",

@@ -6,0 +6,0 @@ "dependencies": {

@@ -12,14 +12,23 @@ node-find-rss [![Build Status](https://travis-ci.org/nikezono/node-find-rss.png)](https://travis-ci.org/nikezono/node-find-rss)[![Test Coverage](https://codeclimate.com/github/nikezono/node-find-rss/badges/coverage.svg)](https://codeclimate.com/github/nikezono/node-find-rss)[![Code Climate](https://codeclimate.com/github/nikezono/node-find-rss/badges/gpa.svg)](https://codeclimate.com/github/nikezono/node-find-rss)

***using npm:***
$ npm install find-rss
npm install find-rss
# Simple To Use: HTTP Address
***using package.json:***
# CoffeeScript
finder = require 'find-rss'
finder "http://nikezono.com"
.then (candidates)->
console.log candidates
"find-rss": "*"
# =>
# [ { 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' } ]
# Simple To Use: HTTP Address
# CoffeeScript(callback)
# CoffeeScript
finder = require 'find-rss'

@@ -41,6 +50,7 @@ finder "http://nikezono.com",(error,response,body)->

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)
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)
maxResponseSize:1000*1000*10 # set http response size limit, e.g. 10MB(dafault:null)

Sorry, the diff of this file is not supported yet

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