
Product
Introducing License Overlays: Smarter License Management for Real-World Code
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
This is the default view engine of the most updated MVC web frameworkxprezzo using handlebars.js
Using hbr as the default view engine requires just one line of code in your app setup. This will render .hbr
files when res.render
is called.
app.set('view engine', 'hbr');
To use a different extension (i.e. html) for your template files:
app.set('view engine', 'html');
app.engine('html', require('hbr').__express);
hbr exposes the registerHelper
and registerPartial
method from handlebars.
var hbr = require('hbr');
hbr.registerHelper('helper_name', function(...) { ... });
hbr.registerPartial('partial_name', 'partial value');
For convenience, registerPartials
provides a quick way to load all partials from a specific directory:
var hbr = require('hbr');
hbr.registerPartials(__dirname + '/views/partials' [, callback]);
Partials that are loaded from a directory are named based on their filename, where spaces and hyphens are replaced with an underscore character:
template.html -> {{> template}}
template 2.html -> {{> template_2}}
login view.hbr -> {{> login_view}}
template-file.html -> {{> template_file}}
See the handlebars.js documentation for more information.
Note: This method is async; meaning that the directory is walked in a non-blocking manner to app startup.
hbr has the ability to expose the application and request locals within any context inside a view. To enable this functionality, simply call the localsAsTemplateData
method and pass in your Express application instance.
var hbr = require('hbr');
var xprezzo = require('xprezzo');
var app = xprezzo();
hbr.localsAsTemplateData(app);
app.locals.foo = "bar";
The local data can then be accessed using the @property
syntax:
top level: {{@foo}}
{{#each items}}
{{label}}: {{@foo}}
{{/each}}
Note: In partials and templates, local data can be accessed without using @
prefix.
The handlebars require used by hbr can be accessed via the handlebars
property on the hbr
module.
If you wish to use handlebars methods like SafeString
please do so on this property. Do not register helpers or partials in this way.
// hbr.handlebars is the handlebars module
hbr.handlebars === require('handlebars');
You can create isolated instances of hbr using the create()
function on the module object.
var hbr = require('handlegrip');
var instance1 = hbr.create();
var instance2 = hbr.create();
app.engine('html', instance1.__express);
app.engine('hbr', instance2.__express);
Each instance has the same methods/properties as the hbr
module object. The module object is actually just an instance created for you automatically.
Xprezzo is maintained by Ben Ajenoui and sponsored by SEO Hero.
FAQs
Xprezzo template engine plugin for Handlebars
We found that hbr 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.
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.