Results 1 comments of Larry Wu

The following code listens to an event via a stream reader: ``` const res = await fetch('http://localhost:8080/test') if (!res.body) { return } const reader = res.body.pipeThrough(new TextDecoderStream()).getReader() while (true) {...