twitter-processor

1.0.5 • Public • Published

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
});

Package Sidebar

Install

npm i twitter-processor

Weekly Downloads

0

Version

1.0.5

License

MIT

Last publish

Collaborators

  • dmongeau
  • folklore
  • francoiscote