0 votes
in Mean Stack by
What does signify "non-obstructing" in node.js?

1 Answer

0 votes
by

In node.js "non-blocking" implies that its IO is non-blocking. Hub utilizes "libuv" to deal with its IO in a stage rationalist manner. On windows, it utilizes finish ports for UNIX it utilizes epoll or kqueue, and so on. Along these lines, it makes a non-blocking demand and upon demand, it lines it inside the occasion circle which calls the JavaScript 'callback' on the fundamental JavaScript string.

...