A Deep Dive Into the Node js Event Loop - Tyler Hawkins

preview_player
Показать описание
Big thanks to our 2022 sponsors:

Silver Sponsors:

Bronze Sponsors:
Рекомендации по теме
Комментарии
Автор

You nailed it, For me, the best and most accurate explanation for eventloop.

irfanbabar
Автор

That was the most clear explanation, thanks for the great effort.

aghiadalzein
Автор

Great Video! Super proud of myself for being able to predict most of the deterministic results. Seems like my goal to solidify my node js understanding is paying off 😌

dan_le_brown
Автор

Thank you very much. Muchas gracias. The best explanation I ever heard aboout this issue. La mejor explicación que he escuchado sobre este asunto.

onielsantiago
Автор

idle, prepare - ??? nice deep dive in Node.js 😂👍

Maxim
Автор

24:28 :D :D :D :D :D :D :D i'm cracked up :D

memduhcevik
Автор

Could you please publish a video deep dive into worker thread and thread pool?

mykun
Автор

git repository of these examples would be appreciated

mdnoverflow
Автор

I did not understand why setImmediate callback always executes first if it is called from thread pool callback. It kind of does not make sense. I thought it would also create a callback that would be executed the next loop after timers, but somehow it looks like it doesn't wait for the next loop, when created within the thread pool callback

Sylvadorr
Автор

You’re from Utah? Me too. 30 min from slc. I’d love to join some js groups if there’s any that happen. Let me know!

creaky
Автор

Is it posible we can get this sample codes and images

enterte
Автор

The greatest one with the greatest and enough full examples!
the only question which remains why `Promises queue` takes priority over `process.nextTick` after getting into `Promise.queue`, is it because of `Promises` are inside `V8` and `process.nextTick` is part of `Node` ?

mdnoverflow