InterviewSolution
Saved Bookmarks
| 1. |
What Are The Features Of Node.js? |
|
Answer» Node.js is a single-threaded but highly SCALABLE system that utilizes JAVASCRIPT as its scripting language. It USES asynchronous, EVENT-driven I/O instead of separate processes or threads. It is able to achieve high output via single-threaded event loop and non-blocking I/O. Node.js is a single-threaded but highly scalable system that utilizes JavaScript as its scripting language. It uses asynchronous, event-driven I/O instead of separate processes or threads. It is able to achieve high output via single-threaded event loop and non-blocking I/O. |
|