Created
October 2, 2011 16:52
-
-
Save cole-gillespie/1257620 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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