1.0.3 • Published 10 years ago
hbs-helpers v1.0.3
Helpers
View helpers for any handlebars projects. For express 3 I prefer using express-hbs and for koa — koa-hbs. Btw, all helpers can work without handlebars.
Installation
$ npm i --save hbs-helpersConfigure for express-hbs
const hbs = require('express-hbs');
const helpers = require('hbs-helpers');
for (let helper in helpers) {
hbs.registerHelper(helper, helpers[helper]);
}Helpers
downsize(text[, options])length(number)formatdate(date[, options])rusweek(date[, options])formatyear(date)timeago(date[, options])formatmoney(number)plural(count[, options])rubles(number)htmlescape(text)urlencode(text)striptags(text)
Author
License
The MIT License, see the included license.md file.