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

flowdock-stream

v1.1.1

Published

A streaming client for flowdock flows

Downloads

8

Readme

flowdock-stream

A node module for streaming flowdock flows. NOTE: for the older API, check version 0.1.3.

Installation

npm install flowdock-stream

Usage

var FlowdockStream = require('flowdock-stream');
var org = 'organization';
var flows = ['flow', 'another'];
var apikey = 'personal-apikey';
var defaultRequestOptions = { proxy: 'http://user:pass@proxyserver' };
var flowdockStream = FlowdockStream.createClient(org, flows, apikey, defaultRequestOptions);

flowdockStream.on('ready', function () {
    console.log('flowdockStream is ready, flows:\r\n', flowdockStream.flows);
});

flowdockStream.on('data', function flowDockEventHandler(data) {
    var sourceFlow = flowdockStream.flows[data.flow];
    if (data.event === 'message') {
        var from = (data.user) ? sourceFlow.users[data.user] : null;
        console.log('a message from', from, data.content);
    } else if (data.event === 'join') {
        var flowName = sourceFlow.name;
        flowdockStream.getUsers(flowName, function setUsers(err, users) {
            if (err) return flowdockStream.emit('error', err);
            sourceFlow.users = users;
            flowdockStream.send(flowName, 'Hello ' + users[data.user]);
        });
    }
});

flowdockStream.on('error', function realGoodErrorHandler(err) {
    throw err;
});

Public methods

A stream is created with the only exported function as follows:

FlowdockStream.createClient( organization, flows, apikey, defaultRequestOptions )

  • first three arguments are mandatory, the apikey is a personal apikey, not an apikey of a flow (the module accesses the REST-API that requires the personal key)
  • the flows argument can be either a string (for a sinlge flow) or an array (for multiple flows)
  • the defaultRequestOptions is an object passed to the underlying request-module to use as default options
  • the stream will emit a ready event once the stream is about to start emitting data and the flows property has been set

The stream itself is a readable node.js stream in object-mode (each data-event holds a complete object), but added are a couple of methods for convenience:

flowdockStream.flows

  • Object that contains the names and urikeys as well as all of the users in the flow at the time of joining.

flowdockStream.getFlows( callback )

  • Function that takes a callback-function which returns two arguments error (Error), and flows (Object), this also gets all of the users for each flow.

flowdockStream.getUsers( flow, callback )

  • Function that takes the name of the flow flow and a callback-function which returns two arguments error (Error), and users (Object)

flowdockStream.send( flow, message, [commentToId], [callback] )

  • Function that can be used to send a message to the flow (you can pick the flow-name from the flows-object by the id in an event-callback, see the example). Optionally you can pass an message-id as the third argument to send the message as a comment to a previous message. Also takes an optional callback which is passed to the underlying request module.

License

http://ok.mit-license.org