Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
dynamic-template-engine
Advanced tools
A typescript library to transform event payloads (in json format) to standard jsons or chat client platform specific jsons (e.g. Slack and Teams) using templates (e.g. handlebars)
A typescript library to transform event payloads (in json format) to standard jsons or chat client platform specific jsons (e.g. Slack and Teams) using templates (e.g. handlebars, liquid)
:warning: NOTE: this module is currently in active development and no stable build has been released as of now, any api may be changed without notice.
This node module enables you to convert any data payload into any other form using templates. This module currently supports two templating languages: Handlebars and liquid. The module gives the capability of loading templates either from a public repo in Github or use the inbuilt ones.
The dynamic-template-engine module uses a TransformerConfig to load up the templates and precomiple them with the correct language on the setup call. After the setup the templating functionality can be used by calling the correct transformer class. The templates should be in the same directory structure as mentioned here
The TransformerConfig.json is the file that allows you to load different templates for different tasks. Following is an example TransformConfig.json
{
"cardRenderer":[
{
"SourceType": "IssueOpened", // Source type can be any string
"ClientType": "Teams", // Has to be an ClientType value currently only Teams is supported
"TemplateType": "HandleBars", // Has to be TemplateType enum value, currently HandleBars and Liquid are the two supported
"TemplateName": "issue_opened.handlebars" // name of the template file
},
{
"SourceType": "IssueReopened",
"ClientType": "Teams",
"TemplateType": "HandleBars",
"TemplateName": "issue_reopened.handlebars"
}
],
"partials":[],
"eventTransformer":[
{
"SourceType":"IssueOpened",// Source type can be any string
"TemplateType":"HandleBars",// Has to be TemplateType enum value, currently HandleBars and Liquid are the two supported
"TemplateName":"issue_opened.handlebars" // name of the template file
}
]
}
The templates should reside in a following directory structure for the module to be able to pick them properly
// TransformerConfig should reside at same level as the CardTemplate and EventTransformer folder
TransformerConfig.json
// Card templates
CardTemplate ---> Teams ---> HandleBars ---> {template file(s)}
---> Liquid ---> {template file(s)}
// Event Transformer templates
EventTransformer ---> HandleBars ---> {template file(s)}
---> Liquid ---> {template file(s)}
Three main classes that are exported out of the module are TemplateManager, CardRenderer and EventTransformer, to import the same use:
import { CardRenderer, TemplateManager, EventTransformer } from 'dynamic-template-engine';
Before you can use the functionality of combining templates with a data model to produce result documents. You need to first setup the all the templates using the TemplateManager. To setup the templates use the following code:
// To pick templates from a repo
TemplateManager.setupTemplateConfigurationFromRepo(repoName, branch, configName);
// To pick up inbuilt templates
TemplateManager.setupTemplateConfiguration(filePath); // file path of the config, needs to be absolute path
// example of how to give absolute path
TemplateManager.setupTemplateConfiguration(path.resolve(__dirname, 'relative/path/of/config/file')); // relative to the current file calling the setupTemplateConfiguration method
Note: If you choose to use your own repo for picking template use the same strucutre for the template repo as mentioned inTemplate Directory Structure . The structure of the repo should be same as mentioned.
Custom helpers and tags can be registered with the templating engine for some are all languages during the setup call. To register the custom helpers and/or tags custom templating options can be provided to the setup call, carrying one or more of the tags or helpers to register. Following example depicts how one can register helpers and/or tags.
await TemplateManager.setupTemplateConfiguration(
path.resolve(__dirname, 'MockTemplate/MockTransformerConfig.json'),
templatingOptions);
// templating options contain the custom helpers and or tags
templatingOptions: CustomTemplatingOptions= {
engineOptions: [{
templateType: TemplateType.Liquid, // specifies for which language the helpers and/or tags are
customHelpers: {
'upperCaseTest': (str: string) => { return str.toUpperCase() }, // custom helpers: key will be used as the name to register
'lowerCaseTest': (str: string) => { return str.toLowerCase() }
},
customTags: { // custom tags: key used to register the tags, and the following tag options should match the requirement of the template language specifications
'upperTest': {
parse: function(this: any,tagToken: any, remainTokens: any): void {
this.str1 = tagToken.args;
},
render: function(this:any, scope: any, hash: any): string {
let str = scope.environments[this.str1];
return str.toUpperCase();
}
}
}]
}
Note: Custom helper syntax and custom tag syntax may vary based on the templating language, make sure to verify the correct syntax for the templating language. All languages might not support helpers and/or tags in such a case trying to register will lead to a FunctionalityNotSupported error. Ex. Handlebars does not support custom tags, trying to register custom tags with handlebars will throw FunctionalityNotSupported error.
To use the templates to combine with the data model use following code:
// To use the card renderer templates from the TransformerConfig.json
// TemplateType is an enum exported by the module currently only Handlebars and Liquid are supported
// ClientType is an enum exported by the module currently only Teams is supported
// SourceType can be any string, but has to be registered in the TransformerConfig.json
// DataJson needs to be a json that the intended template can understand
const cardRenderer = new CardRenderer();
const renderedTemplate = await cardRenderer.ConstructCardJson(templateType, sourceType, clientType, dataJson);
// To use the event transformer templates from the TransformerConfig.json
// TemplateType is an enum exported by the module currently only Handlebars and Liquid are supported
// SourceType can be any string, but has to be registered in the TransformerConfig.json
// evetJson needs to be a json that the intended template can understand
const eventTransformer = new EventTransformer();
const renderedTemplate = await evenTransformer.ConstructEventJson(templateType,sourceType, eventJson);
Current features supported are:
Features not supported yet, but planned:
Please fill out GitHub's Support form and your request will be routed to the right team at GitHub.
Want to help improve the integration between GitHub and Slack? Check out the contributing docs to get involved.
See our code of conduct.
The project is available as open source under the terms of the MIT License.
When using the GitHub logos, be sure to follow the GitHub logo guidelines.
FAQs
A typescript library to transform event payloads (in json format) to standard jsons or chat client platform specific jsons (e.g. Slack and Teams) using templates (e.g. handlebars)
The npm package dynamic-template-engine receives a total of 31 weekly downloads. As such, dynamic-template-engine popularity was classified as not popular.
We found that dynamic-template-engine demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.