@samueltarcin9999
expert
Nothing here yet.
Nothing here yet.
No blogs yet.
Hi , Node.js is a single-threaded application, but can support concurrency through the concept of event and callback. Each Node.js API is asynchronous and single-threaded, using async function calls to maintain concurrency. The node uses the observer pattern. The node thread holds an event loop and executes the corresponding event, which sends a signal to the function that listens for the event when a task completes.