
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
easy_js_tpl
Advanced tools
Module for convenient html and css templating. No additional dependencies, pure javascript.
Module for convenient html and css templating. No additional dependencies, pure javascript. The module to allows you to collect html code in functional style.
npm i easy_js_tpl -S
For example, this code is little dirty:
var html = '<div>';
var list_rows = [{ name: '2017.11', calc: 1200, bold: true }, { name: '2017.12' }];
for (var j = 0, l1 = list_rows.length; j < l1; j++) {
var row = list_rows[j];
var row_name = row.name;
html += '<tr>';
if (row.calc) {
var bold = (row.bold) ? 'font-weight:600;' : '';
html += '<td style=text-align:left;'+bold+'>'+row_name+'</td>';
} else {
html += '<td style=text-align:center;background-color:#EEE; colspan=10>'+row_name+'</td>';
}
}
html+= '</div>';
console.log(html);
After using module easy_js_tpl:
const tpl = require('easy_js_tpl');
var html =
'<div>'+
tpl.foreach([{ name: '2017.11', calc: 1200, bold: true }, { name: '2017.12' }], function (row) {
var row_name = row.name;
return (
'<tr>'+
tpl.if(row.calc,
'<td style=text-align:left;'+tpl.if(row.bold, 'font-weight:600;')+'>'+row_name+'</td>'
).else(
'<td style=text-align:center;background-color:#EEE; colspan=10>'+row_name+'</td>'
)
);
})+
'</div>';
console.log(html);
const tpl = require('easy_js_tpl');
var html =
'<div>'+
tpl.foreach([ 10, 12, 24], (el, i) => '<p> value='+el+' index='+i+' </p>')+
'</div>';
console.log(html); // <div><p> value=10 index=0 </p><p> value=12 index=1 </p><p> value=24 index=2 </p></div>
const tpl = require('easy_js_tpl');
var obj = {
a: 10,
b: 12,
c: 24
};
var html =
'<div>'+
tpl.each(obj, function(key, value) {
return '<p>' + (key+': '+ value) + '</p>';
})+
'</div>';
console.log(html); // <div><p>a: 10</p><p>b: 12</p><p>c: 24</p></div>
const tpl = require('easy_js_tpl');
console.log(
'<div class='+tpl.if(true !== false, 'show')+'>' +
tpl.if(1 === 1, function() {
var res = 1+10;
return '<p>'+res+'</p>';
})+
'</div>'+
tpl.if(() => 2 === 2, '<p>2</p>')
);
// <div class=show>
// <p>11</p>
// </div>
// <p>2</p>
if/elseif/else/
const tpl = require('easy_js_tpl');
var variable = 2;
console.log(
'<div class='+tpl.if(true === false, 'show').else('hide')+'>' +
tpl.if(variable === 1, function() {
return '<p>1</p>';
}).else_if(variable === 2, () => {
return '<p>2</p>';
}).else_if(variable === 3, () => {
return '<p>3</p>';
}).else(() => {
return '<p>else</p>';
})+
'</div>'
); // <div class=hide><p>2</p></div>
if/elseif/else/ with fixed string
const tpl = require('easy_js_tpl');
var variable = 2;
console.log(
'<div class='+tpl.if(true === false, 'show').else('hide')+'>' +
tpl.if(variable === 1, '<p>1</p>')
.else_if(variable === 2, '<p>2</p>')
.else('<p>else</p>')+
'</div>'
); // <div class=hide><p>2</p></div>
if/elseif/else/ with conditional function
const tpl = require('easy_js_tpl');
var variable = 2;
console.log(
'<div class='+tpl.if(true === false, 'show').else('hide')+'>' +
tpl.if(() => variable === 1, '<p>1</p>')
.else_if(() => variable === 2, '<p>2</p>')
.else('<p>else</p>')+
'</div>'
); // <div class=hide><p>2</p></div>
switcher for css classes on element
const tpl = require('easy_js_tpl');
var is_auth = true;
console.log(
'<div>'+
'<p '+tpl.class({ 'login-in': is_auth, 'login-out': !is_auth })+'></p>'+
'</div>'
); // <div><p class=login-in></p></div>
FAQs
Module for convenient html and css templating. No additional dependencies, pure javascript.
The npm package easy_js_tpl receives a total of 2 weekly downloads. As such, easy_js_tpl popularity was classified as not popular.
We found that easy_js_tpl 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.