1 2 3 4 5
while (true) { for await (let chunk of Bun.stdin.stream()) { console.log(new Buffer(chunk).toString()); } }