
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
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 1 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.