No video

Three Concepts Every Node.js Developer Should Understand

  Рет қаралды 10,778

Michael Guay

Michael Guay

Күн бұрын

Пікірлер: 48
@mguay
@mguay 9 ай бұрын
Want to learn more about these concepts and how to build production-grade Node.js Microservices? Check out my highly-rated course with this discount code: michaelguay.dev/udemy/
@johnisutsa1641
@johnisutsa1641 9 ай бұрын
I decided to take the time this month to really try and understand JS and its various runtimes like nodejs, and how it works. Then, this video comes up. Literally perfect timing. Thank you. Excellent teaching as always.
@ivanuskov862
@ivanuskov862 3 ай бұрын
Great video, really helped to understand core concepts of js and async code in js, thanks! wanted to mention that better to use Promise.allSettled instead of Promise.all allSettled handles a little differently (returns status and value) but doesnt stop if rejected promises occur
@cesargamer1231
@cesargamer1231 9 ай бұрын
Insane, make more courses, yours explanations are soo good
@mguay
@mguay 9 ай бұрын
For sure, stay tuned. Thank you!
@nikhilgoyal007
@nikhilgoyal007 6 ай бұрын
My note: @13:00 how promise does not block it. (it is async sleep rather than being blocked)
@CookerSingh
@CookerSingh 7 ай бұрын
A new fan is coming right away, please make more videos on scaling and building production level code logics and optimisation, cause no one is doing that except Copy Pasting 🎉❤ Request: please make a video on how to setup typescript for production react app.
@emreaka3965
@emreaka3965 9 ай бұрын
15:32 and C#. Even with async await syntax utilizses multiple threads. Thank you for the video.
@souhailDevv
@souhailDevv 9 ай бұрын
This is gold, thanks a lot. Can we achieve multi threading by using a message broker/queue system instead of workers ?
@mguay
@mguay 9 ай бұрын
Still one thread, but we can scale horizontally by distributing the work to several applications - so it is very similar.
@mabad8892
@mabad8892 6 ай бұрын
Thank you!! Very informative lecture and looking for further concepts.
@raymondmora7120
@raymondmora7120 9 ай бұрын
Thanks Michael! Your content is amazing, i've learned a lot from you!
@Kady3DPrinting
@Kady3DPrinting 4 ай бұрын
Impressive
@gmg15
@gmg15 8 ай бұрын
Awesome content as always, One question though, if I have a limited knowledge on dockers and k8s, is it a good approach to go with node clusters instead??
@MightyKingKala
@MightyKingKala 9 ай бұрын
your content is a gem, thank you
@orchideirakozesr8842
@orchideirakozesr8842 9 ай бұрын
Excellent tutorial Michael , been following your channel for a while now . thought i'd throw in a couple of nuggets . I know for one that pm2 can be used to scale NodeJs processes , although K8s is a production grade solution it also requires quite a bit of an overhead , could we get alternatives ? I've also hear interesting stuff about Worker threads , maybe you could help us unpack that . Keep up the good work !
@mguay
@mguay 9 ай бұрын
I love the idea of a future video with PM2 and Worker Threads! Stay tuned.
@abolfazljalildoost766
@abolfazljalildoost766 8 ай бұрын
Thanks for these useful videos. I love your tuts
@solomanter
@solomanter 9 ай бұрын
Very helpful, Thanks!
@igboanugwocollins4452
@igboanugwocollins4452 9 ай бұрын
Thank you for this masterpiece
@hamza_dev
@hamza_dev 9 ай бұрын
Wait. When we have I/O-bound tasks, aren't they passed to a thread pool and then executed on a separate thread by the kernel?
@mguay
@mguay 9 ай бұрын
Only for very specific tasks: DNS lookup, file-system I/O, Crypto & ZLIB The actual network I/O is completely async and handled by the kernel. Node (the event loop) simply moves onto other tasks while it awaits the response from the kernel stackoverflow.com/questions/51653440/does-node-js-use-libuv-thread-pool-for-network-i-o
@chris_ea
@chris_ea 8 күн бұрын
Brilliant
@mr.daniish
@mr.daniish 9 ай бұрын
This content is so fresh and different that the cookie cutter dev content being produced out there! keep it coming Micheal
@stephanjames1536
@stephanjames1536 9 ай бұрын
keep it up! you are doing a great JOB!!!
@outplays_3
@outplays_3 9 ай бұрын
Hi @mguay, i wonder in this what theme are you using in vs code?
@belkocik
@belkocik 9 ай бұрын
14:55 is there other way to write a non-blocking code? Rather than returning new Promise(), could I return just a function which contains a setTimeout inside?
@user-qm3sk8gv2q
@user-qm3sk8gv2q 9 ай бұрын
Thanks for your amazing work !!👌🙂
@amirsaad8627
@amirsaad8627 9 ай бұрын
Thank you Michael, And thank you for amazing Udemy micro-services neste course. It makes really big difference at my career 👍. Hope if there is more about could (Kubernetes, helm ) and how to manage clusters.
@mguay
@mguay 9 ай бұрын
For sure, stay tuned. Thank you!
@spikesolid622
@spikesolid622 9 ай бұрын
Nice explanation
@mguay
@mguay 9 ай бұрын
Yes exactly, check out my video on Horizontal Pod Autoscaling to have this happen automatically based on CPU & Memory usage metrics!
@amirchegini9024
@amirchegini9024 9 ай бұрын
Many thanks
@samatzhussipov1139
@samatzhussipov1139 9 ай бұрын
Amazing Thanks!
@Alex-bc3xe
@Alex-bc3xe 7 ай бұрын
You are a really good developer maybe you should refine your branding and marketing strategy cause you have talent.
@mohammadrezabehzadfar8122
@mohammadrezabehzadfar8122 9 ай бұрын
Hi Michael thank for the nice video can you make a course for nestjs graphql microservice i mean even a paid course is fine i really want to know more about that
@mguay
@mguay 9 ай бұрын
Yes stay tuned for my next course :)
@dacam29
@dacam29 9 ай бұрын
Promise.all is concurrent, meaning they start executing in parallel, but, JavaScript being single-threaded, only one line of code is executed at a time (code inside callbacks)
@ofuochi
@ofuochi 9 ай бұрын
Node.js is designed for concurrent, not parallel, execution of operations, with a focus on non-blocking, event-driven tasks primarily suited for I/O-bound workloads
@khanumar6938
@khanumar6938 9 ай бұрын
now its capable of parallel excecution through worker nodes @@ofuochi
@GoYoops
@GoYoops 9 ай бұрын
Yea, and I think it's important to distinguish between the 2 terms for new developers that are learning instead of just deciding to use the term parallel when in fact all code execution is concurrent unless utilizing worker threads. The I/O network events can happen in parallel, but the actual code execution will always be concurrent.
@spikesolid622
@spikesolid622 9 ай бұрын
Why can't we use pm2 for cluster mode?
@mguay
@mguay 9 ай бұрын
Stay tuned for a video on it!
@bombrman1994
@bombrman1994 9 ай бұрын
I am using Nuxt atm
@pluraltest9242
@pluraltest9242 9 ай бұрын
Why does the function non blocking need to be asynchronous? You are returning a promise and not awaiting for anything
@mguay
@mguay 9 ай бұрын
It doesn’t need to be since we’re already returning a Promise like you said
@kendrick2679
@kendrick2679 7 ай бұрын
"Promo SM"
@KhodeCamp
@KhodeCamp 9 ай бұрын
Thank you so much!
Node.js Worker Threads & PM2 Tutorial
29:12
Michael Guay
Рет қаралды 7 М.
Bull & NestJS = Achieving Scale in Node.js
31:41
Michael Guay
Рет қаралды 31 М.
OMG what happened??😳 filaretiki family✨ #social
01:00
Filaretiki
Рет қаралды 13 МЛН
Incredible Dog Rescues Kittens from Bus - Inspiring Story #shorts
00:18
Fabiosa Best Lifehacks
Рет қаралды 27 МЛН
The Giant sleep in the town 👹🛏️🏡
00:24
Construction Site
Рет қаралды 20 МЛН
Node.js Security Best Practices: JWT blacklisting, rate limiting, schema validation
12:02
Masterclass | Mastering Node.js Backends
1:58:52
Platformatic
Рет қаралды 22 М.
Node.js is a serious thing now… (2023)
8:18
Code With Ryan
Рет қаралды 642 М.
JavaScript Visualized - Event Loop, Web APIs, (Micro)task Queue
12:35
NestJS gRPC Microservices Tutorial
55:04
Michael Guay
Рет қаралды 36 М.
Scaling your Node.js app using the "cluster" module
13:44
Software Developer Diaries
Рет қаралды 41 М.
Nest.js Metrics - Prometheus & Grafana Tutorial
22:42
Michael Guay
Рет қаралды 28 М.
OMG what happened??😳 filaretiki family✨ #social
01:00
Filaretiki
Рет қаралды 13 МЛН