UNPKG
pubnub-twitter
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Live Twitter Firehose Stream
github.com/stephenlb/pubnub-twitter
stephenlb/pubnub-twitter
pubnub-twitter
/
example.js
8 lines
(6 loc)
•
177 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
// Require Twitter Feed
var
stream =
require
(
'./pubnub-twitter.js'
);
// Receive Tweet Stream
stream
(
function
(
tweet
){
console
.
log
(
"tweet -> "
,
JSON
.
stringify
(tweet) ); });