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 🙏

© 2026 – Pkg Stats / Ryan Hefner

hubot-getsatisfaction

v0.1.1

Published

Hubot Get Satisfaction handler script to query topics by company

Readme

hubot-getsatisfaction

Hubot Get Satisfaction

Hubot Get Satisfaction handler script to query topics by company.

NPM Version Code Climate Scrutinizer Code Quality NPM Downloads License

Stories in Ready

See src/getsatisfaction.coffee for full documentation.

This Hubot script supports JSON and Markdown views. which can be set using an environment variable or using adapter-based defaults.

Installation

In hubot project repo, run:

npm install hubot-getsatisfaction --save

Then add hubot-getsatisfaction to your external-scripts.json:

["hubot-getsatisfaction"]

You can also add hubot-getsatisfaction to your package.json file and then run npm install.

Configuration

| Variable | Required | Description | |----------|----------|-------------| | HUBOT_GETSATISFACTION_COMPANY | Yes | API Company Name URL Slug, e.g. ringcentraldev | | HUBOT_GETSATISFACTION_VIEW | No | Enumerated value [json,markdown]. Use markdown for Glip and json for Slack. |

Usage

Commands

Both keywords getsat and gs are used.

hubot getsat search (topics) (filter) <QUERY> - returns a list of matching topics.
hubot getsat (all) ideas - returns the total count of all ideas.
hubot getsat company - returns the total count of all ideas.
hubot getsat company <COMPANY_NAME> - sets company_name.
hubot getsat help

For more information on using filters, see the next section.

Search Topics

To search topics you can use the following topic filters which must be placed ahead of your query. For example hubot getsat search topics sort:votes style:idea glip.

| Filter | Values | Notes | |--------|--------|-------| | sort | votes, newest, active, replies, unanswered | votes is an alias for most_me_toos | | style | question, problem, praise, idea, update | | | status | none, pending, active, complete, rejected, open, closed | open and closed are meta values. open = none or pending or active, closed = complete or rejected |

More information on filters is available here: https://education.getsatisfaction.com/reference-guide/api/api-resources/.

Example Usage

Create a Hubot instance, add hubot-getsatisfaction to external-scripts.json and start.

The following example uses the hubot-glip adapter.

$ mkdir myhubot
$ cd myhubot
$ yo hubot
$ vi external-scripts.json
$ HUBOT_GLIP_SERVER=https://platform.ringcentral.com \
HUBOT_GLIP_APP_KEY=MyGlipAppKey \
HUBOT_GLIP_APP_SECRET=MyGlipAppSecret \
HUBOT_GLIP_USERNAME=16505550123
HUBOT_GLIP_EXTENSION=102
HUBOT_GLIP_PASSWORD=MyUserPassword
HUBOT_GETSATISFACTION_COMPANY=ringcentral \
HUBOT_GETSATISFACTION_VIEW=markdown \
./bin/hubot -n hubot -a glip

Hubot Get Satisfaction Demo

Links

Project Repo

  • https://github.com/grokify/hubot-getsatisfaction

Ready-to-Deploy version with Heroku One-Button Deployment

  • https://github.com/grokify/glipbot-getsatisfaction

Hubot

  • https://github.com/github/hubot

Get Satisfaction API

  • API Reference: https://education.getsatisfaction.com/reference-guide/api/
  • API Specs: https://github.com/grokify/api-specs/tree/master/specs/getsatisfaction

Contributing

  1. Fork it ( http://github.com/grokify/hubot-getsatisfaction/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

Hubot Get Satisfaction script is available under the MIT license. See LICENSE.md for details.

Hubot Get Satisfaction script © 2016 by John Wang