InterviewSolution
Saved Bookmarks
| 1. |
What is node.js streams? |
|
Answer» Streams are instances of EventEmitter which can be used to work with STREAMING data in Node.js. They can be used for handling and manipulating streaming large FILES(videos, mp3, etc) over the network. They use buffers as their temporary storage.
|
|