Hacker News new | ask | show | jobs
by oh_teh_meows 4681 days ago
So basically if you have an infinite loop in your app's one and only thread, none of the callbacks will happen because they have to run on that one thread?
3 comments

Yep. Similar to how an infinite loop in the browser will freeze up the page - the browser only gets to control to draw by putting a draw function in the event loop, so if you hog the thread, the page can't update.
Remember the "Node.js is Cancer" troll? It was pretty much about this.
Basically, yes.