DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
Node.js Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
hard
Node.js
Why does stream.pipeline() get recommended over a raw chain of .pipe() calls for multi-stage pipelines?
A
pipeline() is faster at moving bytes
B
pipeline() properly cleans up ALL streams in the chain on error, which raw .pipe() chains don't handle automatically
C
pipeline() doesn't support Transform streams
D
There's no meaningful difference
Check Answer