npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mockingjay

v1.3.0

Published

Create a twitter bot that follows a list and retweets tweets that match a regex pattern.

Downloads

13

Readme

Mockingjay

A Twitter API 1.1 script to make a Twitter bot that retweets tweets that contain words in a RegEx. Built off of RegEx Tweet,

It currently powers @YourRepsOnGuns, retweeting members of congress when they tweet about firearms and related words. Check out that implementation for a more advanced example.

We originally made this project when we were working at The Daily Beast and compiling every member of congress's stance on gun control for This Is Your Rep On Guns. Read more about that project and the origins of this bot here.

Installation

npm install mockingjay

Usage

This example includes the optional inclusion of a bot_name see below for when you want to include that. Otherwise, you can leave it blank or omit it entirely.

var mockingjay = require('mockingjay');

var opts = {
  list_owner: "cspan",
  list_name: "members-of-congress",
  count: 200,
  regex: "(Obamacare|Obama)",
  credentials: {
    consumer_key:         ...,
    consumer_secret:      ...,
    access_token:         ...,
    access_token_secret:  ...
  },
  bot_name: "obamacare-bot"
}

mockingjay.retweet(opts, function(err, result){
  if (!err){
    console.log(result)
    /*{
      "retweeted_matches": true,
      "since_last": 20,
      "matching": 5
    }*/
  }else{
    console.log(err)
  }
})

Options

If you have multiple instances of Mockingjay running on the same machine, you'll want to include a bot_name in the config file. Mockingjay only checks new tweets since the last time it ran. It does this by saving the id of the most latest tweet in a file at src/last-ids/<bot-name>-last-id.json. Specifying a name will make sure that your script will only check for the last time it ran as opposed to the last time some other script ran.

Crontab

This package is meant to be run on a cron. Here's an example setup that runs it on the 1s

1,11,21,31,41,51 * * * * /usr/bin/node /home/ubuntu/tasks/botname/bot.js

Tweets that are retweets

If someone in your list retweeted a tweet that matches your criteria, e.g. you're following senators using the word "gun" and a senator retweets an NRA tweet about "guns", then Mockingjay will send out a tweet that looks like this:

.@<person-on-your-tracking-list> retweeted @<person-they-retweeted>: <url-of-original-tweet>

If a Mockingjay bot were retweeting @csvsoundsystem whenever they mentioned "big data", which someone should make by the way, it would look like this:

@csvsoundsystem retweeted @lifewinning: https://twitter.com/lifewinning/status/445688842721705985 

Callback

result returns an object. If retweeted_matches is true, it found new matching tweets and retweeted them without error. If everything went well but it didn't find any matches, status is false. since_last are the number of new tweets in that list since last it checked. matching is the number of new and matching tweets since last it checked.