
Research
/Security News
jscrambler npm Package Compromised in Supply Chain Attack
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.
JavaScript Templating and Caching System for Node.js.
This is a beta product primary designed for the Publican static site generator. Please use at your own discretion.
jsTACs uses tagged template literals for zero-dependency fast template rendering. Features:
${ expression }!{ expression } is ignored in the initial render so it can be evaluated at runtime. It's possible to pre-build templates so only runtime data remains.Replace expressions in a template string:
import { templateParse } from 'jstacs';
/*
output:
<p>Hello World!</p>
*/
const out1a = templateParse(
'<p>Hello ${ data.name }!</p>',
{ name: 'World' }
);
/*
output:
<p>Hello World!</p>
*/
const out1b = templateParse(
'${ data.name && `<p>Hello ${ data.name }!</p>` }',
{ name: 'World' }
);
/*
output: blank
*/
const out1c = templateParse(
'${ data.name && `<p>Hello ${ data.name }!</p>` }',
{ name: null }
);
data properties such as data.name typically hold a string, number, or another native value. null, undefined, and NaN return an empty string, but true, false, and 0 are rendered as text. Arrays, Sets, and Maps are automatically output: there's no need for .join('') unless you want a specific character between each value.
/*
output:
<ol><li>1</li><li>2</li><li>3</li></ol>
*/
const out2 = templateParse(
'<ol>${ data.list.map(i => `<li>${ i }</li>`) }</ol>',
{ list: [1, 2, 3] }
);
Use !{ expression } to return a partially-completed template which can be saved and used later:
/*
output:
<p>Hello World! The time is ${ data.now }</p>
*/
const out3 = templateParse(
'<p>Hello ${ data.name }! The time is !{ data.now }.</p>',
{ name: 'World' }
);
Any object, Map, Set, or value can be converted to an array using toArray() for easier output:
/*
output:
<p>a, b, c</p>
*/
const out4 = templateParse(
'<p>${ toArray( data.set ).join(', ') }</p>',
{ set: new Set(['a', 'b', 'c']) }
);
A template can include another with include(filename):
const out5 = templateParse(
'${ include("./template/index.html") }',
{}
);
Files can be fully-qualified or relative to the project root directory. You can also set a template directory in the tacsConfig configuration object. All includes and sub-includes use this directory:
import { tacsConfig, templateParse } from 'jstacs';
tacsConfig.dir.template = './template/';
const out6 = templateParse(
'${ include("index.html") }',
{}
);
Global values and functions can be passed to a template using the tacs object.
import { tacs, templateParse } from 'jstacs';
tacs.global = tacs.global || {};
tacs.global.list = ['a', 'b', 'c'];
tacs.exec = tacs.exec || {};
tacs.exec.olList = list => '<ol>' + list.map(i => `<li>${ i }</li>`).join('') + '<ol>';
/*
output:
<ol><li>1</li><li>2</li><li>3</li></ol>
<ol><li>a</li><li>b</li><li>c</li></ol>
*/
const out7 = templateParse(
'${ tacs.exec.olList( tacs.global.list ) }\n${ tacs.exec.olList( data.list ) }\n',
{ list: [ 1, 2, 3 ] }
);
The templateMap Map object used to cache template strings loaded from files. It can be used to pre-load templates and set (or unset) virtual files so they are available when an include() is referenced:
import { templateMap, templateParse } from 'jstacs';
tacsConfig.dir.template = './template/';
templateMap.set('index.html', '${ include("header.html") }');
templateMap.set('_partials/header.html', '<h1>${ data.title }</h1>');
The path is relative to tacsConfig.dir.template or the project root if not set.
Alternatively, you can load and cache individual files using templateGet(). Note this uses readFileSync and may not be as efficient as other methods:
import { templateGet, templateParse } from 'jstacs';
tacsConfig.dir.template = './template/';
templateGet('file.html');
jsTACS can be used as an Express.js rendering engine. Ideally, templates should be pre-rendered first with !{ expressions } so only runtime values need be replaced.
import express from 'express';
import { templateEngine } from 'jstacs';
const
app = express(),
port = 8181;
app.engine('html', templateEngine);
app.set('views', './templates/');
app.set('view engine', 'html');
// render template at ./templates/index.html
app.get('/', (req, res) => {
res.render('index', {
title: 'Page title',
runtime: 'runtime message'
});
});
app.listen(port, () => {
console.log(`Express started on port ${port}`);
});
tacsConfig.maxIterations is set to 50 by default. This ensures no more than 50 templateParse() iterations will occur and prevents circular include() expressions or recursive expressions writing other expressions.
FAQs
jsTACS: JavaScript Templating and Caching System
The npm package jstacs receives a total of 16 weekly downloads. As such, jstacs popularity was classified as not popular.
We found that jstacs 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.

Research
/Security News
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.

Research
/Security News
A malicious .NET package is typosquatting the Braintree SDK to steal live payment card data, merchant API keys, and host secrets from production apps.

Security News
/Research
Compromised Injective SDK npm version 1.20.21 exfiltrates wallet private keys and mnemonics through fake telemetry functionality.