Skip to content

Instantly share code, notes, and snippets.

@shuhblam
Created October 2, 2011 16:52
Show Gist options
  • Save shuhblam/1257620 to your computer and use it in GitHub Desktop.
Save shuhblam/1257620 to your computer and use it in GitHub Desktop.
var twitter = require('ntwitter');
var t = new twitter({
});
t.stream('statuses/filter', { location: '-122.75,36.8,-121.75,37.8,-74,40,-73,41'}, function( stream ) {
console.log( stream )
stream.on('data', function (data) {
console.log(data);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment