| What is non blocking Asynchrononus feature of Node.JS
Well this feature of Node.js will make node.js very fast and accurate. As single thread will do multiple task in compare of single thread for single task. To under stand this we will take an example of hotel where one waiter will take order from one table and then pass this order to kitchen and simply goes to table 2 for the second order and then again pass this order to kitchen. And will serve according to the order cooked by the kitchen. This is and example of non-blocking asynchronous architecture.
Here waiter in above image is single thread which will do multiple task. And this is called non-blocking asynchrononus. | | |