Async ReadStream Listen
This release includes bindings for non-blocking event polling to enable async ReadStream.listen(). For example:
const srt = new SRTReadStream('0.0.0.0', 1234);
srt.listen(readStream => {
readStream.pipe(dest);
});
console.log("async listen");