Further Adventures of the Event Loop - Erin Zimmer - JSConf EU 2018
YouTube Viewers YouTube Viewers
276K subscribers
40,984 views
0

 Published On Jun 21, 2018

Most JavaScript developers are probably familiar with the event loop. It’s how JavaScript handles I/O events without blocking, even though it’s single-threaded. Event callbacks are added to the task queue. The browser then takes a callback from the queue and runs it from start to finish. Then it decides to either repaint or run another callback. Simple, right?

But what about web workers? And promises? And what happens when your JavaScript isn’t running in a browser? In this talk, we’ll look at how multi-threaded event loops work, how promises differ from other callbacks, and what goes on in the Node event loop.

OMG JSConf EU is coming back in 2019 https://2019.jsconf.eu/

show more

Share/Embed