Skip to content

bitliner/TweetStream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tweet_stream

It lets you to create a keyword based Twitter stream.

Pros of using tweet_stream:

  1. integration with nodejs streams: you can create a twitter stream and pipe it to an other nodejs stream that makes some computations on each tweet (check the example)

  2. it enriches each tweet with the specific keyword it was extracted by. In this way you can easily aggregate multiple streams, avoiding to reach the Twitter api limit for stream api

Installation

npm install tweet_stream

Usage

var TwStream=require('tweet_stream'), 
    through2=require('through2');

var t=new TwStream({
    consumer_key:'xxx',
    consumer_secret:'yyy',
    access_token:'zzz',
    access_token_secret:'lll',
    keywords: ['obama','election']
}).pipe(through2.obj(function(tweet, encoding, done) {
    console.log('t', tweet.text);
    done();
}))

About

Node module to create quickly a Twitter keyword based stream

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published