Basic web application in Node.js to return text

Here we write a basic web application in Node.js that serves static text to the client’s HTTP requests. Added an event listener on the server variable that listens to the request events. The event listener takes a callback function with two arguments, request and response. If there is a request, node.js will raise a request … Read more

Why does a while loop blocks the event loop?

How Node.js process this program? flag variable declaration will be placed in call stack and it will be initialized to true. setTimeout() function call will be placed in call stack. Node.js start the timer and schedules a timer event for 1 second. The callback function will be placed in MessageQueue after 1 second. Node.js continues … Read more