1.0.5 • Published 10 years ago

twitter-processor v1.0.5

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

twitter-processor

Receive Tweets from the Twitter Streaming API and process them using custom processors.

Installation

npm install twitter-processor

Usage

var twitterProcessor = require('twitter-processor');

var processor = twitterProcessor.createProcessor({
	'debug' : true,
	'processor' : function(tweet,done) {
		tweet.addedKey = 'value';
		done();
	},
	'twitter' : {
		'consumer_key' : '',
		'consumer_secret' : '',
		'access_token_key' : '',
		'access_token_secret' : ''
	},
	'filter' : {
		'track' : 'Twitter'
	}
});

processor.on('tweet',function(tweet) {
	console.log(tweet.addedKey); //value
});
1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.0.9-5

12 years ago

0.0.9-4

13 years ago

0.0.9-2

13 years ago

0.0.9-1

13 years ago

0.0.9

13 years ago

0.0.8-5

13 years ago

0.0.8-4

13 years ago

0.0.8-3

13 years ago

0.0.8-2

13 years ago

0.0.8-1

13 years ago

0.0.8

13 years ago

0.0.7

13 years ago