var TweetStats = module('tweet-stats');
var credentials = {
consumer_key: '...',
consumer_secret: '...',
access_token: '...',
access_token_secret: '...'
};
var tweetStats = new TweetStats(credentials, interval);
tweetStats.filter("hello world");
/*
statsJson = {
total : 100,
start : #{timestamp},
end : #{timestamp}
};
*/
tweetStats.onStats(function(statsJson){
...
});