DEV Community

Swarup Kumar Mahapatra
Swarup Kumar Mahapatra

Posted on

 

How were you introduced to DDD ? And how much time did it take to grasp the concepts?

There is Algorithms, which takes lot of time to grasp.
Then there is Domain Driven Design, where one might think they got the point, but with very next example you feel lost. Too subjective. No Thumb Rules.

So how has been your journey with DDD so far?
When did you first encounter it and how did you learn it?

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