Hacker News new | ask | show | jobs
by thedufer 4686 days ago
While that's true, I don't believe it's applicable to node.js, so it's a bit out of scope for this article.
1 comments

People coming from multi-threaded server environments should be aware that multi-threading does in fact exist in Node (scope of parent comment), but it's rather different from other more common concurrent event handling schemes. I.e., you cannot have shared mutable variables across threads (scope of article and ongoing async discussion). For examples, see https://npmjs.org/package/webworker-threads and https://github.com/cramforce/node-worker.
Fascinating. I didn't know that webworkers were available in node.js. I stand corrected, then.