On Event Loops in node.js
The wonderful environment of node.js uses an event loop rather than threading to deal with multiple incoming requests and more. Threading is tricky, or so I have been told. Event loops are less tricky, or so I have been told. Why? I think the key reason is that threads are running at their own pace, [...]