Rocco Musolino

Results 210 comments of Rocco Musolino

What are you trying to achieve? can you paste full code?

using `const` and `let` I think we should bump also minimum node version (that right now is `"node": ">=10.8.0"`) and travis CI

This package isn't intended to work with serial ports. You should use something like https://github.com/serialport/node-serialport Bitcoin donation: `bc1q2flsafyfmnz2phlf20t8l6y6zdx2n0eqz676nn`

It could be just a race condition with the `spawn`. It doesn't care if there's a listener the other way. Once it is spawned it keeps sending data to `/tmp/test.sock`...

That `MaxListenersExceededWarning` should be fine. Thanks for you investigations and your time. The lib is being used in a lot of places so finding the bug if any would be...

Ok I'm asking for Node version since it looks like Node 10 fixed some unit tests that were failing under Mac OS. You can post here. But couldn't we just...

I don't think it's a bug. Setting a too low time interval is not a valid test. If you think there's an issue it should be reproduceable somehow. Try to...

Yeah definetly looks like a bug. Still wasn't able to figure it out. I tried to check if somehow is related with node's buffer hightWaterMark (`16384` by default). Btw running...

Any news on this? Confirmed that looks like a Server problem. ```js let nc = new NetcatServer() nc.k().port(2389).listen().serve(process.stdin).on('data', (s, d) => console.log(d.toString())) // broken with big payload // .pipe(process.stdout) //...