#node
Read more stories on Hashnode
Articles with this tag
NodeJs Part 4 ยท In Node.js, JavaScript code runs in a single thread. When a piece of code is executed, it blocks the execution of any other code until it...
NodeJs Part 4 ยท Why do we need event handlers in NodeJs ? An event handler is a callback function that gets executed in response to a specific event. In...
NodeJs Part 3 ยท The event loop is a crucial part of how Node.js works. It is what allows Node.js to perform non-blocking I/O operations, even though...