InterviewSolution
Saved Bookmarks
| 1. |
What is fork in node JS? |
|
Answer» A fork in general is used to SPAWN child PROCESSES. In node it is used to create a new INSTANCE of V8 engine to RUN multiple workers to execute the code. |
|