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

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ต.ค. 2022
  • Big thanks to our 2022 sponsors:
    Silver Sponsors:
    JasperAI - www.jasper.ai/
    Deepgram - provided the transcriptions for captioning deepgram.com/
    Bronze Sponsors:
    Auth0 - auth0.com/

ความคิดเห็น • 24

  • @HarmeetSingh0013
    @HarmeetSingh0013 หลายเดือนก่อน

    amazing..... superb talk and in-depth.

  • @irfanbabar8424
    @irfanbabar8424 7 หลายเดือนก่อน +2

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

  • @nexus7743
    @nexus7743 ปีที่แล้ว +2

    This is just awesome!

  • @aghiadalzein3069
    @aghiadalzein3069 ปีที่แล้ว +4

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

  • @smartguy3k
    @smartguy3k 2 หลายเดือนก่อน

    Thank you.

  • @stevenarmoo7011
    @stevenarmoo7011 ปีที่แล้ว +2

    Great explanation!

  • @timtim8408
    @timtim8408 ปีที่แล้ว +1

    Thank you!

  • @runonce
    @runonce ปีที่แล้ว +1

    Thank you, great talk!

  • @gabrielpato8841
    @gabrielpato8841 3 หลายเดือนก่อน +1

    Great stuff, man. Thank you for this

  • @jorasdf100
    @jorasdf100 ปีที่แล้ว +1

    Thank you!!!

  • @bikashkalita8712
    @bikashkalita8712 ปีที่แล้ว +1

    Great explantion.

  • @dan_le_brown
    @dan_le_brown 8 หลายเดือนก่อน +1

    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 😌

  • @luispuentes6392
    @luispuentes6392 8 หลายเดือนก่อน +1

    Awesome talk 🤩

  • @cesargonzalezhenriquez9486
    @cesargonzalezhenriquez9486 ปีที่แล้ว +1

    Really good explanation.

  • @minthukyaw8451
    @minthukyaw8451 หลายเดือนก่อน

    that is awesome

  • @MuruganandhanPeramagound-zk6my
    @MuruganandhanPeramagound-zk6my 2 หลายเดือนก่อน

    A very good explanation.

  • @onielsantiago7433
    @onielsantiago7433 10 หลายเดือนก่อน +1

    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.

  • @_ademmeral
    @_ademmeral 10 หลายเดือนก่อน +1

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

  • @mykun8737
    @mykun8737 ปีที่แล้ว +1

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

  • @creaky2436
    @creaky2436 ปีที่แล้ว

    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!

  • @Sylvadorr
    @Sylvadorr 7 หลายเดือนก่อน

    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

  • @mdnoverflow
    @mdnoverflow 3 หลายเดือนก่อน

    git repository of these examples would be appreciated

  • @enterte
    @enterte 6 หลายเดือนก่อน

    Is it posible we can get this sample codes and images

  • @mdnoverflow
    @mdnoverflow 3 หลายเดือนก่อน

    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` ?