Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hubot-rss-poller

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hubot-rss-poller - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

6

lib/rss-feed-poller.js

@@ -83,5 +83,7 @@ 'use strict';

options.robot.logger.info('Starting feed poller for ' + options.name + '.');
checkFeed();
setTimeout(function () {
checkFeed();
setInterval(checkFeed, options.pingInterval * 1000);
setInterval(checkFeed, options.pingInterval * 1000);
}, (options.initialDelay || 3) * 1000);
}

@@ -88,0 +90,0 @@

{
"name": "hubot-rss-poller",
"version": "0.0.3",
"version": "0.0.4",
"description": "A simple poller for RSS feeds in hubot. It will alert to chat on updates to the feed polled on a regular interval.",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -20,5 +20,6 @@ # Hubot Rss Poller

"alertPrefix": "A prefix to the output message goes here.",
"alertSuffix": "a suffix to an output message goes here."
"alertSuffix": "a suffix to an output message goes here.",
"initialDelay": "3" // initial wait (in seconds) check to allow hubot to connect"
}]
}
```
SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc