DEV Community

Cover image for Hacktoberfest-2021
bhavana-kumar
bhavana-kumar

Posted on

 

Hacktoberfest-2021

Hey Coders! Is this your first time contribution to open source for which you are being awarded?

A big Yes 🌠 for me.
Hacktoberfest-2021 is my first time contribution to open source.
Here's my github link : https://github.com/thebhavana

  • Contributing to open source projects is a different level of satisfaction.
  • Getting rewards for the same is cool πŸ˜„

Github platform allows us to work on multiple projects by eliminating the geographical gap of world. There are so many open-source projects available on github.
Adding codes to the existing repository and closing the issues was cool.

Looking for more such opportunities ✨

Top 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.