Feb 2 · 6 min read · Handlebars.Net is a port of the Handlebars.js library that compiles Handlebars templates directly into IL bytecode. It enables quick and easy creation of dynamic email templates, including variables, iterations, conditional blocks, and much, much mor...
Join discussion
Aug 27, 2025 · 2 min read · In this article, we review handlebars package in Puck codebase. We will look at: What is Handlebars.js package? Usage in Puck codebase What is Handlebars.js package? Handlebars is a simple templating language. It uses a template and an input obj...
Join discussionApr 13, 2025 · 2 min read · An .hbs file is a file extension commonly associated with Handlebars, a popular templating engine for JavaScript. Think of it as a way to dynamically generate HTML (or other text-based formats) by combining static content with data. Key Concepts of H...
Join discussionAug 28, 2024 · 17 min read · Handlebars is a popular template engine used together with a server-side framework, like Node.js to render dynamic content directly from the backend of an application. The templating engine also comes with additional functionalities that make it a va...
Join discussion
Jun 8, 2023 · 3 min read · Template engines play a crucial role in separating presentation logic from data in web development. Total.js introduces Tangular, an impressive and feature-rich template engine that stands as a compelling alternative to well-known engines like Handle...
KChris commented
May 1, 2023 · 2 min read · In this part 2, we will define routes while incorporating Handlebars. Installing Handlebars Install express-handlebars with the command npm install express-handlebars Require express-handlebars in index.js ... const app = express() const handl...
Join discussion
Jan 18, 2023 · 8 min read · Welcome to Day 29 of our blogging series "Code, Blog, Repeat: A 50-Day Quest for Back-End Mastery"! Yesterday, we covered middlewares in Express, and today we're going to explore the world of templating and rendering. As we built our simple express s...
Join discussion
Jan 1, 2023 · 10 min read · Node.js is a JavaScript runtime that extends its capability to the server side. It is built on Chrome’s V8 JavaScript Engine. Node is an event-driven, non-blocking IO model. This means it's asynchronous and doesn't block itself for one request (but r...
Join discussion