Is there a way to pipe stream data to a variable? The writable stream examples mentioned in this documentation include:
- HTTP requests on the client side
- HTTP responses on the server side
- Zlib streams
- Crypto streams
- TCP sockets
- Child process stdin
- Process stdout and stderr
Does this mean it's not possible to pipe stream data to a variable for processing? I don't want to store the stream data on my disk, so what is the most efficient way to combine all the streams and work with the data?
Thank you! Please feel free to ask if you need more details!