thread-stream icon indicating copy to clipboard operation
thread-stream copied to clipboard

A streaming way to send data to a Node.js Worker Thread

Results 14 thread-stream issues
Sort by recently updated
recently updated
newest added

![Screen Shot 2021-11-11 at 00 24 25](https://user-images.githubusercontent.com/9642510/141231760-12845f99-b420-44b3-985c-c5dd07ba9a69.png) Webpack is returning me a promise that has a double default, do we have to catch this type of error?

Hi, I am trying to implement multithreading in a websocket with the ws protocol, I found **thread-stream** and I would like to know how I could implement it. Thanks for...

Just something to remember... in https://github.com/pinojs/thread-stream/blob/main/lib/worker.js, when the destination error event is emitted, an 'ERROR' message is posted back to the origin thread... https://github.com/pinojs/thread-stream/blob/main/lib/worker.js#L21-L26: ```js destination.on('error', function (err) { parentPort.postMessage({...

Hi, i have been working on a fork of browserify and have been wanting to implement a worker pool for transforms using something like this so that it can keep...