Node.js event loop: concurrent processing in a single-threaded environment

When you start a Node.js application by running node index.js, you are in fact creating a Node.js process in which your code will run. Every process has a dedicated memory pool which is shared between its threads. Or in other words, you can create a variable in one thread and read it from another. While … Continue reading Node.js event loop: concurrent processing in a single-threaded environment