Name the types of API functions in Node? There are two types of functions in Node.js. 1.Blocking functions - In a blocking operation, all other code is blocked from executing until an I/O event that is being waited on occurs. Blocking functions execute synchronously. ...