跟踪twitter列表中的事件(nodejs / meteor)

有没有一种简单的方法来跟踪Twitter列表中的“实时”鸣叫? 以下是一个示例列表: https : //twitter.com/StartupDorf/lists/startups-im-startupdorf

我想过使用twit ,并首先检索所有成员的列表,然后跟踪这些用户。 这是我目前的方法,分两步工作:

// first, fetch a list of all list members T.get('lists/members', {id: 1282843634, list_id: 95809626, count: 5000}, function (err, data, response) { if (err) { // } else { data.users.forEach(function (user) { follow.push(user.id) }); } }); // I haven't seen a .done() method, so I'm just waiting 3 seconds to start with the stream. Meteor.setTimeout(function () { console.log(follow, follow.length); var stream = T.stream('statuses/filter', {follow: follow}); stream.on('tweet', Meteor.bindEnvironment(function (data) { console.log(data); })) }, 3000); 

那么,如果新成员被添加到列表中,我怎样才能自动更新我的Stream事件?