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

hubot-radbus

v0.2.6

Published

RadBus API integration for Hubot

Downloads

8

Readme

hubot-radbus

RadBus API integration for Hubot

Build Status

Reports to the current user what their upcoming bus times are using the RadBus API. If it's AM, they get times for their buses heading into the office. Likewise, if it's PM, they get times for buses that will take them home.

NOTE: RadBus currently only works in the Twin Cities (Minneapolis/St. Paul, MN) area.

Installation

NPM

In your Hubot repository, run:

npm install hubot-radbus --save

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

["hubot-radbus"]

Configuration

RadBus requires a bit of configuration to get everything working:

  • HUBOT_RADBUS_TIMEZONE - Set to America/Chicago since RadBus only supports the Twin Cities metro area, which is in the Chicago timezone
  • HUBOT_RADBUS_API_BASE_URL - Set to https://api.radbus.io/v1
  • HUBOT_RADBUS_API_KEY - Set to the an API key that has been registered to your instance of Hubot. Go here for more information on how to request an API key.

Commands

hubot bus token {token} - Sets your application token (refresh token) so Hubot can call the RadBus API from the server-side on your behalf.
hubot bus me [route] - Returns your upcoming bus schedule (to work if its AM, to home if PM).  Optionally you can specify a route and it will only reply with departures from that route.
hubot bus {user} [route] - Same as 'bus me' but for a different Hubot user.
  • Before bus me will return anything useful, it needs to know your bus schedule. The easiest way to do that is to go build your personalized schedule using a RadBus app (for example: https://www.radbus.io).
  • Before Hubot will be allowed to make API calls on behalf of your user you need to aquire an application token (otherwise known as a 'refresh token') and register it with Hubot (see bus token command above). If you don't have a registered application token, Hubot will tell you what you need to do to get one.

Example Interactions

busrider> hubot bus me
hubot> Hey @busrider, give me a moment to look up those bus depatures...
       @busrider, here are your next bus times:
       7:23 AM (1 minuteundefined): 264-C @ I-35W and County Rd C Park & Ride
         http://goo.gl/WHgnd7
       7:39 AM (17 minutes): 264-C @ I-35W and County Rd C Park & Ride
         http://goo.gl/WbGdCc
       7:57 AM (35 minutes): 264-C @ I-35W and County Rd C Park & Ride

Resources

  • http://dev.radbus.io