DEV Community

Tyler V. (he/him)
Tyler V. (he/him)

Posted on

 

๐Ÿถ Dog Appreciation Day '21 - Share your dog(s)

It's August 26, AKA National Dog Day!

To celebrate, share pictures of your dog and introduce us to them!

I'll start things off:

This is our Husky mix Ellie:

Tan and white fluffy dog lounging on a porch with a blue building behind her to the left and a porch railing on the right. In the distance there is a tall dark treeline

And our Corgi Luna:

Tri colored corgi sitting looking to the left with a sunny afternoon treeline behind her.

Oldest comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesnโ€™t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.