InterviewSolution
Saved Bookmarks
| 1. |
What is the command for import external libraries in Node JS? |
|
Answer» Command “require” is used in NODE JS for IMPORT external libraries. Mentioned below is an EXAMPLE of this. “var http=require (“http”)”. This will load the library and the SINGLE exported object through the HTTP variable. |
|