twitter-stream

0.3.0 • Public • Published

Twitter Streaming API Library for Node.js

Install

Install into current directory

npm install twitter-stream

Install into system wide location

sudo npm install -g twitter-stream

Example

var ts = require('twitter-stream');
 
//Connecting to Twitter Streaming API
var stream = ts.connect({
  screen_name: '',
  password: '',
  action: 'sample',
});
 
//Retrieving status one by one
stream.on('status', function(status) {
  console.log(status);
});
 
//Handling error
stream.on('error', function(error) {
  console.error(error);
});
 
//Aborting the stream
stream.abort();
//Pass in parameters
var stream = ts.connect({
  screen_name: '',
  password: '',
  action: 'filter',
  params: {track: 'Twitter'},
});

Contribution

Fork and send pull requests

Bugs and feature request may be submitted to: https://github.com/lmws/node-twitter-stream/issues

Readme

Keywords

none

Package Sidebar

Install

npm i twitter-stream

Weekly Downloads

0

Version

0.3.0

License

none

Last publish

Collaborators

  • liuming