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-gotomeeting

v0.1.6

Published

hubot script to manage GoToMeeting meetings

Downloads

30

Readme

hubot-gotomeeting

screencast

Creating an unnamed one-time meeting

GoToMeeting requires every meeting to have a name, but sometimes you just don't care. In this case, we'll create a name automatically based on the name of the requester and the current time.

[devon] hubot: create meeting
[hubot] I've created the meeting 'devon-1424453821' for you.
[hubot] Join: https://www.gotomeeting.com/join/:meeting_id

Creating a one-time meeting with a name

This will create meeting with the specified name.

[devon] hubot: create meeting Impromptu Check-In
[hubot] I've created the meeting 'Impromptu Check-In' for you.
[hubot] Join: https://www.gotomeeting.com/join/:meeting_id

Creating a recurring meeting

This will a recurring meeting with the specified name. Recurring meetings won't disappear from the meeting list after the first occurrence ends.

[devon] hubot: create recurring meeting Impromptu Check-In
[hubot] I've created the recurring meeting 'Impromptu Check-In' for you.
[hubot] Join: https://www.gotomeeting.com/join/:meeting_id

Host a meeting

This will retrieve the organizer link for the meeting.

[devon] hubot: host meeting Impromptu Check-In
[hubot] Host meeting 'Impromptu Check-In' at https://joingotomeeting.com/s234234

Joining a meeting

This will retrieve the participant link for the meeting.

[devon] hubot: join meeting Impromptu Check-In
[hubot] Join meeting 'Impromptu Check-In' at https://joingotomeeting.com/s234234
[hubot] Phone: US: +1 (571) 317-3131
[hubot] Access Code: 555-555-555

Listing known meetings

This will list all known meetings under the account. Flags are appended to active and/or recurring meetings.

[devon] hubot: list meetings
[hubot] 'Impromptu Check-In' [active] [recurring]
[hubot] 'devon-1424453821'

Installation

  1. Add hubot-gotomeeting to your hubot setup: npm install hubot-gotomeeting --save
  2. Add hubot-gotomeeting to your hubot's external-scripts.json
  3. Set the required configuration options

Configuration

HUBOT_GOTOMEETING_USER_TOKEN: GoToMeeting User OAuth Token

Improvements

Improvements or requests are welcome. Please file an issue or pull request.