Nodejs, Event Loop, and Asynchronous non-blocking I/O operation
Node.js is single-threaded. This means that all operations are executed in a single thread.
Node.js applications have a single call stack.
A call stack operates as a queue. During execution, when an application steps into a function (executes the fu...
mubaraktech.hashnode.dev1 min read