1.

How many types of API functions are there in Node.js?

Answer»

There are two TYPES of API functions:

  • ASYNCHRONOUS, non-blocking functions - MOSTLY I/O operations which can be fork out of the main loop.
     
  • Synchronous, blocking functions - mostly operations that INFLUENCE the PROCESS running in the main loop.


Discussion

No Comment Found