HTML5 web workers in NodeJS?

Does anyone know what is the web worker support status in NodeJS? I found a 2 year old implementation, node-webworkers, but it didn't start with the current NodeJS build.

+3


source to share


2 answers


There is now https://github.com/audreyt/node-webworker-threads which appears to be actively maintained.



+4


source


You can use child processes, they solve similar problems.



+3


source







All Articles