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

hear-flowdock-speak

v1.0.0

Published

Give a voice to flowdock chat

Downloads

3

Readme

hear-flowdock-speak

A commandline utility to vocalize a Flowdock chat stream.

Quickstart

$ npm install -g hear-flowdock-speak`

Configure your environment and then:

$ hear-flowdock-speak

Configuration

Environment Variables

Set your Flowdock personal API token in an environment variable FLOWDOCK_API_KEY. You can find this Token by logging in to Flowdock (or CA Agile Central) and visiting https://www.flowdock.com/account/tokens.

$ FLOWDOCK_API_KEY=abcdef0123456789 hear-flowdock-speak

.hear-flowdock-speak.json

You must set up configuration by copying config.template.json to ~/.hear-flowdock-speak.json in your home folder and editing to match your environment.

  • organization - Your organization name in flowdock
  • flowdockApiKey - Optional Your Flowdock API key. You can set this here or in the environment variable.
  • flows - an array of names of flows to vocalize.
  • voices - an array of names of the available voices for your platform. See the say package for details.
  • userVoices - A map of Flowdock user names to OS Voices. If a user is not in the list, they are assigned a random voice from voices.
  • filters - A collection of regular expressions to improve pronunciations. This is an array of objects with these properties:
    • match- The regular expression to match (remember to escape backslashes)
    • flags - Optional regex flags. The default is gi
    • say - The replacement text. Use $1 to refer to first capture group. (On the Mac, see Speech Speech Synthesis Programming Guide for ways to enhance voice output.)
  • defaultRequestOptions - the defaultRequestOptions is an object passed to the underlying request module to use as default options (ie. proxy settings).