Remix.run Logo
no_wizard 3 days ago

NodeJS has worker threads[0] already

[0]: https://nodejs.org/docs/latest/api/worker_threads.html

crabmusket 3 days ago | parent [-]

These are very similar to web workers, they don't share memory other than via SharedArrayBuffer instances. For anything else you use message passing.