is this still a viable option over handlebars.js or mustache.js?
Hi,
I've learned aobut your tool reading https://www.sitepoint.com/overview-javascript-templating-engines/
I was expecting to find a large community from the article's sounding of it. But here, it feels like a lonely place. Last communication was in 2021.
Is this an abandoned project?
Hi there! You're right about the reduced activity. While templating engines were revolutionary for their time, modern JavaScript has evolved to provide better native solutions. The most straightforward approach today is using template literals:
const template = (data) => `
<div class="card">
<h2>${data.title}</h2>
<p>${data.description}</p>
</div>
`;
This built-in JavaScript feature provides clean, readable syntax for string interpolation without requiring any external dependencies. It's now the preferred way to handle simple templating needs.