DEV Community

vladimirk4
vladimirk4

Posted on

 

Hackable to do list

A colleague and I made a to-do app experimenting with the cxjs framework. We want to keep it as minimalist as possible, utilitarian, and productive. Tdo ( https://tdo.cxjs.io/help) is meant to be used with the keyboard. One can customize it with markdown and CSS however they want.

But I would really appreciate your feedback and criticism on how to improve it, or simplify more. :)

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.