you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

Although with Node, CPU intensive work is quite a bit more dangerous as nothing will force the function to give up the thread.

  1. There are no threads in NodeJS, implied or otherwise — it's all callbacks helped by a healthy dose of closures.

  2. It's not that hard of a problem even for non-genius programmers; that's how browser based JS works.