1.0.5 • Published 9 years ago

twitter-processor v1.0.5

Weekly downloads
3
License
MIT
Repository
github
Last release
9 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

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.0.9-5

11 years ago

0.0.9-4

11 years ago

0.0.9-2

11 years ago

0.0.9-1

11 years ago

0.0.9

11 years ago

0.0.8-5

11 years ago

0.0.8-4

11 years ago

0.0.8-3

11 years ago

0.0.8-2

11 years ago

0.0.8-1

11 years ago

0.0.8

11 years ago

0.0.7

11 years ago