Learning Journal Node.js: blocking vs non-blocking
From the Node.js official docs: "Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient."
Blocking scripts require that execution happen sequentially. This is problematic for Node.js as new operations cannot be e...
blog.thescrappy.dev1 min read