0.0.2 • Published 10 years ago

twitstream v0.0.2

Weekly downloads
7
License
-
Repository
github
Last release
10 years ago

twitstream

Twitter streaming module which I like.

Usage

Creating a client

Create a client tracking nodejs search term.

var twitstream = require('twitstream');
var stream = twitstream({
  auth: {
    token: '...',
    tokenSecret: '...',
    consumerKey: '...',
    consumerSecret: '...'
  },
  track: ['hockey']
});

Read tweets

stream.on('readable', function () {
  var tweet = stream.read();
  console.log(JSON.stringify(tweet));
});