DEV Community

Cover image for Dev log for Wonder Wanderer 2: Day 9 #LOWREZJAM 😁
Michael Primo
Michael Primo

Posted on

 

Dev log for Wonder Wanderer 2: Day 9 #LOWREZJAM 😁

What did I do today?

Unless I come up with new ideas, this game is ready to start. Just polished stuff and controls are improved. Now I will make levels, polish the art and hope to make a alpha version of the game tomorrow.
Alt Text

The progress of today.

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.