Piping is a mechanism for connecting a readable stream to a writable stream, allowing data to flow automatically from the source to the destination.
It simplifies the process of handling data transfer between streams and reduces the need for manual event handling and buffering.
readable.pipe() method is used for this purpose