InterviewSolution
Saved Bookmarks
| 1. |
What Do You Mean By Asynchronous Api? |
|
Answer» All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js BASED SERVER never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the PREVIOUS API CALL. All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call. |
|