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

@sugarcube/plugin-twitter

v0.42.1

Published

Query the Twitter API as a SugarCube plugin.

Downloads

36

Readme

@sugarcube/plugin-twitter

This is a plugin for SugarCube.

Installation

npm install --save @sugarcube/plugin-twitter

Plugins

twitter_feed

Fetch the tweets of a twitter user account.

Configuration:

  • twitter.consumer_key
  • twitter.consumer_secret
  • twitter.access_token_key
  • twitter.access_token_secret
  • twitter.tweet_count
  • `twitter.retweets**

Metrics:

  • total: The total number of feeds queried.
  • fail: The number of feeds that failed to query.
  • success: The number of feeds that succeeded.
  • fetched: The number of tweets that were fetched from all feeds.

twitter_tweet

Fetch individual tweets by the Tweet ID.

Configuration:

  • twitter.consumer_key
  • twitter.consumer_secret
  • twitter.access_token_key
  • `twitter.access_token_secret**

Metrics:

  • total: The total number of tweets queried.
  • fail: The number of tweets that failed to download.
  • success: The number tweets that succeeded to download.

twitter_tweets - DEPRECATED

This is an alias for the twitter_tweet plugin.

twitter_friends

Fetch the friends of a twitter user account.

Configuration:

  • twitter.consumer_key
  • twitter.consumer_secret
  • twitter.access_token_key
  • twitter.access_token_secret

twitter_followers

Fetch the followers of a twitter user account.

Configuration:

  • twitter.consumer_key
  • twitter.consumer_secret
  • twitter.access_token_key
  • twitter.access_token_secret

twitter_search

Search for tweets.

Configure the profile to contain the twitter_query key. It will make a search for tweets. To search for a specific hashtag, prefix the query with %23, which translates to #.

Configuration:

  • twitter.consumer_key
  • twitter.consumer_secret
  • twitter.access_token_key
  • twitter.access_token_secret
  • twitter.language: Limit tweets to the following languages provided as ISO 639-1 language code, e.g. pt or es.
  • twitter.geocode: Limit tweets to the specified langitude,latitude,radius triplet, e.g. 37.781157,-122.398720,3km. The radius can be either specified as km or as mi.

twitter_filter_failing

This plugin verifies against the Twitter API that each unit that is a Tweet exists, and returns all failing Tweets as units in the envelope.

This plugin doesn't collect missing tweets as failures, but it counts the metric.

Configuration:

  • twitter.consumer_key
  • twitter.consumer_secret
  • twitter.access_token_key
  • twitter.access_token_secret

Metrics:

  • total: The total number of Twitter tweets queried.
  • fail: The number of tweets that failed. This metric is tracked continuously as it is detected.
  • success: The number of tweets that exist.
  • missing: The number of tweets that failed. This metric is emitted once at the end of the plugin containing the total number of failed tweets.

License

GPL3 @ Christo