Комментарии •

  • @irfanbabar8424
    @irfanbabar8424 8 месяцев назад +2

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

  • @aghiadalzein3069
    @aghiadalzein3069 Год назад +4

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

  • @runonce
    @runonce Год назад +1

    Thank you, great talk!

  • @dan_le_brown
    @dan_le_brown 9 месяцев назад +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 😌

  • @nexus7743
    @nexus7743 Год назад +2

    This is just awesome!

  • @timtim8408
    @timtim8408 Год назад +1

    Thank you!

  • @stevenarmoo7011
    @stevenarmoo7011 Год назад +2

    Great explanation!

  • @gabrielpato8841
    @gabrielpato8841 4 месяца назад +1

    Great stuff, man. Thank you for this

  • @HarmeetSingh0013
    @HarmeetSingh0013 Месяц назад

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

  • @bikashkalita8712
    @bikashkalita8712 Год назад +1

    Great explantion.

  • @jorasdf100
    @jorasdf100 Год назад +1

    Thank you!!!

  • @onielsantiago7433
    @onielsantiago7433 11 месяцев назад +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.

  • @luispuentes6392
    @luispuentes6392 9 месяцев назад +1

    Awesome talk 🤩

  • @cesargonzalezhenriquez9486
    @cesargonzalezhenriquez9486 Год назад +1

    Really good explanation.

  • @smartguy3k
    @smartguy3k 3 месяца назад

    Thank you.

  • @minthukyaw8451
    @minthukyaw8451 2 месяца назад

    that is awesome

  • @MuruganandhanPeramagound-zk6my
    @MuruganandhanPeramagound-zk6my 3 месяца назад

    A very good explanation.

  • @Maxim9575
    @Maxim9575 13 дней назад

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

  • @mykun8737
    @mykun8737 Год назад +1

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

  • @_ademmeral
    @_ademmeral 11 месяцев назад +1

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

  • @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 8 месяцев назад

    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 4 месяца назад

    git repository of these examples would be appreciated

  • @enterte
    @enterte 7 месяцев назад

    Is it posible we can get this sample codes and images

  • @mdnoverflow
    @mdnoverflow 4 месяца назад

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