Home
what the fuck is wrong with bun lmao it just refuses to buffer >128kb in a tcp socket as a result, code similar to this fucking breaks in pieces and only the first ~128k ever gets sent ```js for (let i = 0; i < 3; i++) { const data = crypto.randomBytes(131240) socket.write(data) } ``` as a workaround i can.. uhh.. `setTimeout()` :troll: