I've been trying to figure this out by myself, but had no success yet. I don't even know how to start researching for this (though I've tried some Google searchs already, to no avail), so I decided to ask this question here.
Is it possible to return multiple Vinyl files from a Through2 Object Stream?
My use case is this: I receive an HTML file via stream. I want to isolate two different sections of the files (using jQuery) and return them in two separate HTML files. I can do it with a single section (and a single resulting HTML file), but I have absolutely no idea on how I would do generate two different files.
Can anyone give me a hand here? Thanks in advance.
The basic approach is something like this:
Create as many output files from your input file as you need using the
clone()
function.Modify the
.contents
property of each file depending on what you want to do. Don't forget that this is a Buffer, not a String.Modify the
.path
property of each file so your files don't overwrite each other. This is an absolute path so use something likepath.parse()
andpath.join()
to make things easier.Call
this.push()
from within thethrough2
transform function for every file you have created.Here's a quick example that splits a file
test.txt
into two equally large filestest1.txt
andtest2.txt
: