
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
template-replace-stream
Advanced tools
A high performance template replace stream working on binary or string streams
A high performance {{ template }}
replace stream working on binary or string streams.
This module is written in pure TypeScript, consists of only 189 lines of code (including type definitions) and has no other dependencies. It is flexible and allows replacing an arbitrary wide range of template variables while being extremely fast (we reached over 20GiB/s, see Benchmarks).
npm install template-replace-stream
This module contains type definitions and also an .mjs
file for maximum compatibility.
The following Node.js versions are tested to work with the package. Older versions are not tested but should still be able to use it.
16.x | 18.x | 20.x | 22.x |
---|---|---|---|
You create a TemplateReplaceStream
by passing a source of template variables and their replacement
values to the constructor. This may either be a map containing key-value pairs, or a function that
returns a replacement value for a given template string.
const {TemplateReplaceStream} = require("template-replace-stream");
const fs = require("node:fs");
const path = require("node:path");
// create a map of variables to replace. This will replace "{{replace-me}}" with "really fast"
const variables = new Map([["replace-me", "really fast"]]);
// create the streams
const readStream = fs.createReadStream(path.join(__dirname, "template.txt"));
const writeStream = fs.createWriteStream(path.join(__dirname, "example.txt"));
const templateReplaceStream = new TemplateReplaceStream(variables);
// connect the streams and put the template replace stream in the middle
readStream.pipe(templateReplaceStream).pipe(writeStream);
writeStream.on("finish", () => console.log("Finished writing example.txt"));
import {TemplateReplaceStream} from "template-replace-stream";
import fs from "node:fs";
import path from "node:path";
// create a map of variables to replace. This will replace "{{replace-me}}" with "really fast"
const variables = new Map([["replace-me", "really fast"]]);
// create the streams
const readStream = fs.createReadStream(path.join(__dirname, "template.txt"));
const writeStream = fs.createWriteStream(path.join(__dirname, "example.txt"));
const templateReplaceStream = new TemplateReplaceStream(variables);
// connect the streams and put the template replace stream in the middle
readStream.pipe(templateReplaceStream).pipe(writeStream);
writeStream.on("finish", () => console.log("Finished writing example.txt"));
It's also possible to pass another Readable
as replacement value source to
the TemplateReplaceStream
. In fact, the README you are just reading was created using this
feature. This makes it possible to replace template variables with whole files without reading them
into a stream before.
import {StringSource, TemplateReplaceStream} from "template-replace-stream";
import fs from "node:fs";
import path from "node:path";
import sloc from "sloc";
import {Project, ts} from "ts-morph";
const rootDir = path.join(__dirname, "..");
const exampleFiles = ["javascript-example.js", "typescript-example.ts", "generate-readme.ts"];
const outputFilePath = path.join(rootDir, "README.md");
const sourceFilePath = path.join(rootDir, "index.ts");
const codeInfo = sloc(fs.readFileSync(sourceFilePath, "utf8"), "ts");
const loc = codeInfo.total - codeInfo.comment - codeInfo.empty;
const optionsDefinition = extractTypeDefinition("TemplateReplaceStreamOptions", sourceFilePath);
// the map of example files and their read streams and further template variables
const templateMap = new Map<string, StringSource>(exampleFiles.map((file) => [file, openExampleStream(file)]));
templateMap.set("loc", loc.toString());
templateMap.set("options-definition", optionsDefinition);
// create the streams
const readmeReadStream = fs.createReadStream(path.join(rootDir, "template.md"));
const readmeWriteStream = fs.createWriteStream(outputFilePath);
// connect the streams and put the template replace stream in the middle
readmeReadStream.pipe(new TemplateReplaceStream(templateMap)).pipe(readmeWriteStream);
readmeWriteStream.on("finish", () => console.log(`Created ${outputFilePath}`));
/**
* Opens a file stream to the given source file.
*
* @param file The file to read.
*/
function openExampleStream(file: string) {
return fs.createReadStream(path.join(__dirname, file));
}
/**
* Extracts the type definition from the given source file.
*
* @param typeName The name of the type to extract.
* @param filePath The full path to the source file.
*/
function extractTypeDefinition(typeName: string, filePath: string) {
const sourceFile = new Project().addSourceFileAtPath(filePath);
const typeNode = sourceFile.getTypeAlias(typeName)?.compilerNode;
if (!typeNode) throw new Error(`Type alias ${typeName} not found.`);
const printer = ts.createPrinter({removeComments: false});
return printer.printNode(ts.EmitHint.Unspecified, typeNode, sourceFile.compilerNode);
}
/**
* Options for the template replace stream.
*/
export type TemplateReplaceStreamOptions = {
/** Default: `false`. If true, the stream creates logs on debug level */
log: boolean;
/**
* Default: `false`. If true, the stream throws an error when a template variable has no
* replacement value. Takes precedence over `removeUnmatchedTemplate`.
*/
throwOnUnmatchedTemplate: boolean;
/**
* Default: `100`. The maximum length of a variable name between a start and end pattern including
* whitespaces around it. Any variable name longer than this length is ignored, i.e. the search
* for the end pattern canceled and the stream looks for the next start pattern.
* Note that a shorter length improves performance but may not find all variables.
*/
maxVariableNameLength: number;
/** Default: `'{{'`. The start pattern of a template string either as string or buffer */
startPattern: string | Buffer;
/** Default: `'}}'`. The end pattern of a template string either as string or buffer */
endPattern: string | Buffer;
/** Any options for the lower level {@link Transform} stream. Do not replace transform or flush */
streamOptions?: TransformOptions;
};
The benchmarks were run on my MacBook Pro with an Apple M1 Pro Chip. The data source were virtual
files generated from- and to memory to omit any bottleneck due to the file system. The "native" data
refers to reading a virtual file without doing anything else with it (native fs.Readable
streams).
So they are the absolute highest possible.
Like the raw file system stream, a TemplateReplaceStream
becomes faster with an increasing source
file size. It is more than 20x faster than the replace-stream
when processing large files. The
throughput of the TemplateReplaceStream
was more than 20GiB/s when replacing a single variable in
a 100MiB file.
Replacing a single variable in a 100MiB file takes only 6ms using a TemplateReplaceStream
. Reading
the whole file from the disk alone takes already more than 1ms. The stream-replace-string
packages
was omitted im this graph, as it took over 16s to process the 100MiB file.
You can see that the performance declines when working with more replacements. Note that one reason
is the virtually generated workload (see "native" in the graph). TemplateReplaceStream
still
reaches 10GiB/s.
To replace ten thousand template variables in a 100MiB file, the TemplateReplaceStream
takes
around 10ms. Since this duration is similar for smaller file sizes, we can see that it does not
perform too well in the 1MiB file. We will keep optimizing for that.
Buffer.indexOf()
to find the end of a template variable,
tooBuffer.indexOf()
instead of iterating over
the buffer myselfthrowOnMissingVariable
to throwOnUnmatchedTemplate
FAQs
A high performance template replace stream working on binary or string streams
The npm package template-replace-stream receives a total of 51 weekly downloads. As such, template-replace-stream popularity was classified as not popular.
We found that template-replace-stream demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.