Socket
Socket
Sign inDemoInstall

feedr

Package Overview
Dependencies
3
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.3.0 to 2.4.0

3

History.md
## History
- v2.4.0 December 2, 2012
- Dropped the request dependency
- v2.3.0 November 2, 2012

@@ -4,0 +7,0 @@ - Changed the signature of `readFeed` from `feedName, feedDetails, next` to `feedDetails, next` where `feedDetails = {name,url} or url`

10

out/lib/feedr.js
// Generated by CoffeeScript 1.3.3
var Feedr, balUtil, pathUtil, request,
var Feedr, balUtil, pathUtil,
__hasProp = {}.hasOwnProperty;

@@ -7,4 +7,2 @@

request = require('request');
pathUtil = require('path');

@@ -162,8 +160,8 @@

}
return request(feedDetails.url, function(err, response, body) {
var data, parser, xml2js;
return balUtil.readPath(feedDetails.url, function(err, data) {
var body, parser, xml2js;
if (err) {
return viaCache();
}
body = body.trim();
body = data.toString().trim();
if (/^</.test(body)) {

@@ -170,0 +168,0 @@ xml2js = require('xml2js');

{
"name": "feedr",
"version": "2.3.0",
"version": "2.4.0",
"description": "Takes in a remote feed and converts it to json data",

@@ -33,4 +33,3 @@ "homepage": "http://bevry.me/project/feedr",

"dependencies": {
"request": "2.9.x",
"bal-util": "1.13.x",
"bal-util": "1.14.x",
"xml2js": "0.2.x"

@@ -37,0 +36,0 @@ },

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