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

feed-to-tweet

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feed-to-tweet

Easily power a Twitter bot with multiple feeds.

  • 0.0.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

feed-to-tweet

NPM

Easily power Twitter bots with content feeds.

  • Supports multiple source feeds

  • Keyword and regular expression filtering against titles to only Tweet the matching items

  • Configurable feed checking interval

  • Configurable Tweet interval, to reduce flooding

  • No persistent storage required

Usage

  1. Install
npm install feed-to-tweet
  1. Use in your script
var feedToTweet = require('feed-to-tweet');

feedToTweet({
  feeds: [
    {
      feedURL: 'http://www.funnycatsite.com/rss/all/'
      formatter: function(item) {
        return 'OH YOU CATS! ' + item.title + ' ' + item.link;
      }
    }
  ],
  twitterCfg: {
    consumer_key: process.env.TWITTER_CONSUMER_KEY,
    consumer_secret: process.env.TWITTER_CONSUMER_SECRET,
    access_token_key: process.env.TWITTER_ACCESS_TOKEN_KEY,
    access_token_secret: process.env.TWITTER_ACCESS_TOKEN_SECRET
  }
});

Options

  • feeds: Array of feed objects. See example above. Formatter is optional.
  • twitterConfig: Object with Twitter keys and tokens. See example above.
  • searches: Array of string keywords or string regular expressions. Only items with matching titles are tweeted.
  • checkIntervalMins: Checks feeds every X minutes (default 60)
  • tweetIntervalSecs: Waits X seconds between posts to reduce flooding (default 10)
  • debug: Boolean to print out some debug logging

Evaluation Method

The script checks the feed item's pubDate property, and if the difference between it and the current time is less than the checkIntervalMins value you specified, the item will be Tweeted.

There's a risk of double-tweets or missed-tweets if you stop and restart the script, but under normal conditions this method works good enough.

TODO

  • Support searching on other fields than title
  • Case-sensitive searching

Keywords

FAQs

Package last updated on 06 Dec 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc