In Node.js, a duplex stream combines both readable and writable streams, and data can be written to and read from the '______' side.
- input
- output
- read
- write
In Node.js, a duplex stream combines both readable and writable streams, and data can be written to and read from the 'output' side. Duplex streams allow bidirectional data flow, making them suitable for tasks where data needs to be both read and written.
Loading...
Related Quiz
- For processing HTTP requests, Express.js allows defining middleware functions at the application level and ______ level.
- When using ES6+ modules, the import statement must be at the ________ of the file.
- When creating a buffer in Node.js, if you do not specify an encoding type, the data will be treated as ______.
- The typeof operator in JavaScript returns 'object' for ________.
- In what scenario would you need to create a custom error class in Express.js?