Why node.js and what's special about it?
Anónimo
Node.js applications executes code asynchronously. It is an single thread based asynchronously execution. There is no wait time for function execution. Node.js is able to execute any number of functions simultaneously. It won't wait for completion of one function . So this mechanism saves execution time and increases performance of the application .