Joseph Taiwoaribadawulo.hashnode.dev·Aug 28, 2024Handlebars Guide: An Efficient Way to Rendering Dynamic Content from a Node.js BackendHandlebars 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...Discusshandlebars
Chris Kidchriskid.hashnode.dev·Jun 8, 2023Tangular: A Flexible Template EngineTemplate 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...Discuss·13 likes·71 readsNode.jsThis is so helpfull post for front-end developers 10
Bryandevlogbook.hashnode.dev·May 1, 2023Create a Basic Framework with Express (Part 2)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...Discuss·30 readsBuild a Node Express App router
Vaibhav Dewanganvaibzde.hashnode.dev·Jan 18, 2023#Day29 - Templating and Rendering in ExpressWelcome 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...DiscussCode, Blog, Repeat: A 50-Day Quest for Back-End MasteryExpress
Arash Arorablogs.arasharora.com·Jan 1, 2023Getting started with Node.jsNode.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...Discuss·1 like·34 readsNode.js
Ghulam Rabbani Ansarighulamrabbani883.hashnode.dev·Jun 12, 2022How to use handlebars template engine in your nodeJs AppIntroduction Usually nodejs interact with client side using React, Angular. These technologies are mainly used for bigger projects. But what If we have to create small and simple project using nodeJs and ExpressJs. In order to solve this problem we ...Discuss·534 readsNode.js
Shubham Upretiblog.progmatic99.xyz·Nov 23, 2021🚩 Translations for open-event-frontend🧑🏫 Why is translation needed? The frontend-repo and server-repo powers FOSSASIA's eventyay, which is an event management system. A major portion of our customers resides in non-English speaking countries. So, it's important for us as part of U...Discuss·2 likes·194 readsJavaScript
Nicolas Oliveirabruxo.hashnode.dev·Dec 3, 2020How to install and use Handlebars with expressRequirements: node express nodemon Install $ yarn add express-handlebars Files: src ├── node_modules └── app.js In app.js create express server: const express = require('express'); const app = express(); const handlebars = require('express-ha...Discuss·11 likes·59 readshandlebars
Rahul Singh8bitstar.hashnode.dev·Oct 26, 2020How to add progress for long-hanging operations using PythonThis is an upgrade story of a long-waiting program that shows nothing while progressing their success destination. But, It's 2020, we have now some cool packages which make our dumb operations into progress operations. yaspin Yaspin provides a fu...Discuss·16 likes·148 readsPython 3
Isiaka Lukmandellyson.hashnode.dev·Oct 8, 2020Add Views to your Hapi.js project with VisionWhen creating web applications using backend frameworks like Express.js it's normal for developers to want to add views to their various projects and Hapi.js is not exempted, you can add views to your Hapi projects too in fact Hapi supports multiple ...Discuss·6 likes·239 readsNode.js