I was having some trouble using this module with node 8. If you run following snippet on node 6, after 30 seconds it adds new keyword, reconnects and continue emitting tweets. On node 8 however, it stops emitting after reconnect. Connection to Twitter results with 200 Success and after some debugging, connection is live and content is arriving.
Hi,
I was having some trouble using this module with node 8. If you run following snippet on node 6, after 30 seconds it adds new keyword, reconnects and continue emitting tweets. On node 8 however, it stops emitting after reconnect. Connection to Twitter results with
200 Success
and after some debugging, connection is live and content is arriving.With previous node versions, following code does not end stream even if it should since here,
this.parser.pipe(this)
is done without{end: false}
.This pull request resolves this issue.