Transforms data in a stream. Supports append, prepend, replace, erase, and compare. In the future it will support split.
npm install @voliware/node-data-transform
If you have any stream in Node.js - a file, a TCP stream, a native Node request or response object - and you need to append data, prepend data, erase data, compare data, or replace data in the stream, you need this.
An enhanced Transform object, which is a native Nodejs stream object. Transforms are passed to the pipe() function when dealing with readable streams. When data flows through the readable stream, it also flows through the transform. The transform can actually change the data as it goes down the pipe. DataTransform is able to process the chunks perfectly, whether you receive massive chunks at a time, or literally one byte at a time.
Create one or many DataTransform objects that do as many of the following actions
append(match, content)prepend(match, content)replace(match, content)erase(match)compare(match)
Here, match means what are we looking for in the stream, and content is what we will append, prepend, or replace it with. For erase and compare, we don't need any content. erase simply removes the data while compare emits an event.
In this example, we will create just one DataTransform that will erase data, append some data with a file, prepend some data with a file, and replace some data with text. Note that the matches are named the same as the functions for clarity.
<div>
<!-- append -->
<!-- prepend -->
</div>
<div>
<!-- replace -->
<!-- erase -->
</div>let readable = Fs.createReadStream("base.html");
let writable = Fs.createWriteStream("index.html");
let datatransform = new DataTransform()
.erase('<!-- erase -->') // erase <!-- erase -->
.append('<!-- append -->', {file: "append.html"}) // append with contents of a file
.prepend('<!-- prepend -->', {file: "prepend.html"}) // prepend with contents of a file
.replace('<!-- replace -->', {string: "Replaced!"}); // replace with textThe result will be
<div>
<!-- append --><div id="append"></div>
<div id="prepend"></div><!-- prepend -->
</div>
<div>
Replaced!
</div>A minifier
let datatransform = new DataTransform()
.erase(' ') // erase spaces
.erase(Buffer.from([0x0d, 0x0a])) // erase new lines An HTML injector
let datatransform = new DataTransform()
.append('<!-- templates -->', {file: "templates.html"}) // append with contents of a fileSearch and replace in a file
let datatransform = new DataTransform()
.replace('youre', {string: "you're"}) // search and replace There are two options when creating a DataTransform.
concat- If true [default], all chunks are concatenated before processing. This is usually what you want.
- If false, chunks are processed and sent downstream as they arrive.
modifiers- Instead of using the API you can pass along an array of modifiers to the constructor.
- Each modifier object has the properties of
action- "append", "prepend", "compare", "replace", or "erase"match- the string or buffer to match againstcontent- the string or buffer or filepath to append, prepend, or replace with
Append " Senior" each time we find "Joe".
Prepend "Mr. " each time we find "Joe".
Replace "dog" with "cat".
Erase all "bad words"!
let datatransform = new DataTransform({
concat: false,
modifiers: [
new Modifier("append", "Joe", {string: " Senior"}),
new Modifier("prepend", "Joe", {string: " Mr."}),
new Modifier("replace", "dog", {string: "cat"}),
new Modifier("erase", {string: "bad words"})
]
});Even better, you can use an array to, for example, append many files or strings after one match.
let datatransform = new DataTransform({
concat: false,
modifiers: [
new Modifier("append", "<!--templates-->", [
{file: './src/html/template1.html'},
{file: './src/html/template2.html'},
{string: '<template id="abc">ABC</template>'}
])
]
});