Concept Flow - Piping streams together
Create Readable Stream
Create Writable Stream
Pipe Readable -> Writable
Data flows chunk by chunk
Writable receives data and writes
End event triggers when done
Streams close
This flow shows how data moves from a readable stream into a writable stream using pipe, chunk by chunk, until all data is transferred and streams close.