Demystifying the Node.js Event Loop
Node.js is a single-threaded application, but it can support concurrency via the concept of event and callbacks. Every API of Node.js is…
Viewing articles tagged “Event driven programming in Node.js”
Node.js is a single-threaded application, but it can support concurrency via the concept of event and callbacks. Every API of Node.js is…
Many objects in a Node emit events, for example, a net.Server emits an event each time a peer connects to it, an fs.readStream emits an…