DEV Community

Cover image for Hactoberfest 2021
Shreya Ghosh
Shreya Ghosh

Posted on

 

Hactoberfest 2021

Hello everyone,I am very happy to share that I have successfully completed the #hacktoberfest2021 challenge.
My Contributions were:
1.Splash Screen Added to Buddhad/Contribution_Website
2.Star Catching Game Added to ZeroOctave/ZeroOctave-Javascript-Projects
3.Covid-19 Android Project Added to Coder-forfun/Hactoberfest-test
4.Hello World in LUA Added to indranil32/HelloWorld

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.