Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
bogart-handlebars
Advanced tools
Bogart Middleware to load a directory hierarchy of views.
npm install bogart-handlebars --save
In your app:
var bogartHandlebars = require('bogart-handlebars');
var app = bogart.app();
app.use(bogartHandlebars(Path.join(__dirname, 'views')));
Middleware executed after bogartHandlebars will have views
and
respond
services available. The views service is an object whose
property hierarchy matches the directory hierarchy of the views.
Directory contents starting with underscore e.g. _layout.html are registered as partials with their full path name.
Example:
Figure A, Directory Hierarchy
views
|-layouts
|-_main.hbt
|-public
|-index.hbt
_main.hbt will be registered as the partial 'layouts/main'.
index.hbt will be available from views.public.index
.
respond
serviceMiddleware executed after bogart-handlebars will have respond
available
as a service.
/**
* Create a Bogart response with a body of a handlebars view.
* @param {Function} view The handlebars view from the `view` service.
* @param {Object} locals Template variables for the handlebars template.
* @param {Object} options Overrides for the response. Common values: status, headers.
* @returns {Object} A Bogart response.
*/
respond(view, locals, options)
Example:
var bogartHandlebars = require('bogart-handlebars');
var router = bogart.router();
router.get('/', function (views, respond) {
return respond(views.public.index, { title: 'Hello World' });
});
var app = bogart.app();
app.use(bogartHandlebars(path.join(__dirname, 'views')));
app.use(router);
It is possible to add to the locals passed to the view by respond
in
a cross-cutting manner with the onCreateLocals
event. Register a callback
to this event:
bogartHandlebars(path.join(__dirname, 'views'))
.onCreateLocals(function (session) {
return { user: session('user') }
});
This example adds a user
parameter from session
to the locals
of every view that respond
renders.
onCreateLocals
is chainable.
FAQs
Handlebars tools for Bogart
The npm package bogart-handlebars receives a total of 0 weekly downloads. As such, bogart-handlebars popularity was classified as not popular.
We found that bogart-handlebars demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.