Indexed by TopGit from live GitHub metadata: pillarjs/hbs has 1.7k stars, written primarily in JavaScript. Express view engine wrapper for Handlebars
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
See the handlebars.js documentation for more
information.
The way the file is renamed to a partial name can be adjusted by providing a rename option. The function will receive the file path relative to the registered directory and without the file extension. If the returned value contains any whitespace, those characters are replaced with a corresponding underscore character.
var hbs = require('hbs')
hbs.registerPartials(path.join(__dirname, '/views/partials'), {
rename: function (name) {
// all non-word characters replaced with underscores
return name.replace(/\W/g, '_')
}
})
Note: This method is async; meaning that the directory is walked in a non-blocking manner to app startup.
Exposing locals as template data
hbs 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 hbs = require('hbs');
var express = require('express');
var app = express();
hbs.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.
handlebars
The handlebars require used by hbs can be accessed via the handlebars property on the hbs 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.
// hbs.handlebars is the handlebars module
hbs.handlebars === require('handlebars');
Recipes
more than one instance
You can create isolated instances of hbs using the create() function on the module object.
var hbs = require('hbs');
var instance1 = hbs.create();
var instance2 = hbs.create();
app.engine('html', instance1.__express);
app.engine('hbs', instance2.__express);
Each instance has the same methods/properties as the hbs module object. The module object is actually just an instance created for you automatically.
extra scripts or styles
Sometimes it is useful to have custom scripts or stylesheets on your pages. Handlebars does not provide a way to import or extend a template, but through the use of helpers you can create a similar result.
We can take advantage of the fact that our body template is processed before the layout template. Knowing this, we can create two helpers block and extend which can be used to 'inject' custom stylesheets or scripts into the layout template. The block helper will act as a placeholder for values specified in earlier extend helpers.
See examples/extend for a working example. Note how the index.hbs file defines extra stylesheets and scripts to be injected into the layout. They are put into the head section and at the end of the body respectively. If this was not done, the stylesheet would be in the body and the script would print foo bar too soon.
Helpful Modules
hbs-utils: A small utility
library that provides helpers for registering and compiling partials
including automatic updates when partials are changed.
No homepage URL was recorded for pillarjs/hbs in TopGit's last sync. The README tab above frequently contains screenshots and demo links, or check the repository description on GitHub.
Does pillarjs/hbs have any tags?
TopGit's last sync did not record any GitHub topics for pillarjs/hbs. GitHub topics appear in the right sidebar of a repository page; that's the authoritative place to check.
How active is development on pillarjs/hbs?
The most recent commit recorded on pillarjs/hbs was 17 days ago, based on the GitHub push timestamp. The repository has 200 forks — one of the better signals of community interest.
How many stars does pillarjs/hbs have?
pillarjs/hbs has 1.7k GitHub stars — refresh the page for the live number, or check github.com/pillarjs/hbs. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
Is pillarjs/hbs open source?
Yes — pillarjs/hbs ships under the MIT license, which makes its source code freely readable (and, depending on license terms, forkable and reusable). Source: github.com/pillarjs/hbs.
Where do I read more about pillarjs/hbs?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/pillarjs/hbs is the definitive source.
Read full README in the tab above.
Curious whether hbs is right for you?
Let ChatGPT, Claude, or Perplexity look into it — click below and see what AI actually says about hbs.