0.1.1 • Published 12 years ago

twitterfeed v0.1.1

Weekly downloads
4
License
-
Repository
github
Last release
12 years ago
var feed = new (require('twitterfeed'))({
  searchString: '@NodePhilly OR #nodephilly OR #nodejs', // https://dev.twitter.com/docs/using-search
  filterString: 'nodephilly,nodejs', // https://dev.twitter.com/docs/streaming-apis/parameters#track
  cacheLimit: 3 // cycle tweets out of cache after limit is reached
});

feed.init(function() {
  console.log(feed.getCachedTweets()); // cache initialized based on searchString

  feed.stream(function(tweet) {
    console.log(tweet); // stream tweets based on filterString
  });
});
0.1.1

12 years ago

0.1.0

12 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago