This repository contains a TypeScript port of the StringTemplate 4 template engine. It's released under the BSD license, like the original code, plus some additional code, which is released under the MIT license. These are:
- Testing infrastructure code (decorators, JUnit wrappers, configuration and spec files)
- A MurmurHash implementation used by the HashMap class.
- The HashMap class.
Breaking Change: Starting with version 2.0 the package no longer depends on any Node.js support. Instead it's now ready to be used also in browser environments. To make this possible the file system to be used can now be configured. By default memfs is used, but can also specify Node.js
fs
.Read more below in the "How To Use" section.
ST4TS (StringTemplate4TypeScript) is a template engine for generating source code, web pages, emails, or any other formatted text output. ST4TS is particularly good at multi-targeted code generators, multiple site skins, and internationalization/localization.
The main website for the original ST implementation is:
Its distinguishing characteristic is that it strictly enforces model-view separation, unlike other engines. See this document
The documentation is here
Per the BSD license in LICENSE.txt, this software is not guaranteed to work and might even destroy all life on this planet.
The port closely resembles the original. Luckily, Java and TypeScript share many similarities, allowing for the implementation of even esoteric language features such as runtime method access and invocation using string names (also known as reflection). However, there are a few differences, which are listed below:
- Importing modules is different in both languages and can be challenging when dealing with circular dependencies. To avoid these dependencies, interfaces and factory methods have been defined for certain classes that refer to each other. This should not impose any restrictions for normal usage.
- Formatting numbers with arbitrary format strings and locale support is not available. We can either have locale aware formatting using the standard
toLocaleString
method or we can have a custom format string pattern, not both. I decided for the latter (which uses thefast-printf
library). Once I have found a library which supports both (such asluxon
for date and time), this can be improved.
Run
npm i stringtemplate4ts
Or use your preferred package manager.
ST4TS works with template (*.st
) and template group (*.stg
) files. These files can import other files, which makes it necessary to provide a file system from which the automatic import can be performed. In Java the library directly accessed the real file system, which is not desirable in a web environment. Instead memfs comes into play. You can use it just like you use a disk based file system. The only difference is that you first have to transfer your group files to memfs under any path you like (which you then pass on to the ST4TS classes).
There's a way to use the native filesystem with memfs, if you still want that.
Other than that there's no difference in usage. For example the test cases still look the same as before. Here's one example:
@Test
public testSimpleAdaptor(): void {
const templates = "foo(x) ::= \"<x.id>: <x.name>\"\n";
TestModelAdaptors.writeFile(this.tmpdir, "foo.stg", templates);
const group = new STGroupFile(this.tmpdir + "/foo.stg");
group.registerModelAdaptor(BaseTest.User, new TestModelAdaptors.UserAdaptor());
const st = group.getInstanceOf("foo");
st?.add("x", new BaseTest.User(100, "parrt"));
const expecting = "100: parrt";
const result = st?.render();
assertEquals(expecting, result);
}
simply because they already generate all files manually. The function used to write the file is this:
public static writeFile(dir: string, fileName: string, content: string): void {
try {
const f = dir + "/" + fileName;
const realDir = dirname(f); // fileName can contain subdirectories.
if (!fs.existsSync(realDir)) {
fs.mkdirSync(realDir, { recursive: true });
}
fs.writeFileSync(f, content);
} catch (ioe) {
if (ioe instanceof Error) {
console.error("can't write file " + fileName + "\n" + ioe.stack);
} else {
throw ioe;
}
}
}
The general approach, however, is to create an own file system and prime it with the files you need. Here's an example from the memfs documentation:
import { fs, vol } from 'memfs';
const json = {
'./README.md': '1',
'./src/index.js': '2',
'./node_modules/debug/index.js': '3',
};
vol.fromJSON(json, '/app');
fs.readFileSync('/app/README.md', 'utf8'); // 1
vol.readFileSync('/app/src/index.js', 'utf8'); // 2
This allows to get the template files from anywhere (file system, fetch, HTML input fields, source code etc.).
Here's a real life example for the use of a custom file system in ST4TS.
import { memfs } from "memfs";
// Create the new private file system.
const { fs } = memfs();
// Tell ST4TS to use it.
useFileSystem(fs);
// Create a root folder for your templates and copy them from the physical disk into that.
fs.mkdirSync("/templates", { recursive: true });
// Copy here all the files from the physical file system to the virtual one.
...
With that in place you can start creating STGroupFile instances (etc.) and give them the path from your virtual file system.
The source is at github.com:
Check the repository out and run
npm run build
in the project root.
Running the tests is equally simple. Just do:
npm run test
in the project root.
Allow configuration of ST4TS with a custom file system.
The library no longer needs Node.js to run. Instead it uses the in-memory file system memfs.
Also switched 3rd party deps that depended on antlr4ng-cli.
Switched from antlr4ng-cli to antlr-ng.
- The if<> check in Interpreter did not correctly handle maps and sets. Added a test case for the fix.
- Renderer registration did not default the parameter "recursive" to true, causing rendering problems in nested templates, if this parameter isn't specified.
- Updated 3rd party packages.
- Property names for map model objects can be anything, including numbers or null. Using a general falsification test might wrongly reject them.
- Bug fix for HashMap. It used get() to determine if a key exists (which returns the value instead).
- Fixed a bug where members of model objects, which are themselves object were not accessible in templates. Added a test case for that.
- Upgraded dependencies to latest versions.
- Added export for common interfaces.
- Initial release.
- Changed build structure to include both CommonJS and ES6 modules.