Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
hmpo-templates
Advanced tools
Page layouts and partials for Node.js with ExpressJS frontend applications
Common page layouts and partials.
npm install [--save] hmpo-templates
Install hmpo-govuk-template, hogan-express-strict and express-partial-templates as part of your project.
var app = require('express')();
require('hmpo-govuk-template').setup(app);
app.set('view engine', 'html');
app.use(require('hmpo-templates'));
app.engine('html', require('hogan-express-strict'));
app.use(require('express-partial-templates')(app));
my-page.html
{{< hmpo-layout}}
{{$pageTitle}}...page title...{{/pageTitle}}
{{$header}}
<h1>...heading...</h1>
{{/header}}
{{$content}}
<p>...intro content...</p>
{{< hmpo-partials-form}}
{{$form}}
...form inputs...
...form submit button...
{{/form}}
{{/ hmpo-partials-form}}
{{/content}}
{{/ hmpo-layout}}
The templates are added to res.locals
with hmpo
as a prefix to the template names.
Layout:
Partials:
Create layout.html in your views directory.
{{< hmpo-layout}}
{{$pageTitle}}...page title...{{/pageTitle}}
{{$main-content}}
{{< hmpo-partials-maincontent-right}}
{{$header}}...heading...{{/header}}
{{$content}}...content...{{/content}}
{{/ hmpo-partials-maincontent-right}}
{{/main-content}}
{{/ hmpo-layout}}
This changes the main page layout to maincontent-right. In your custom pages you can now inherit from layout.html.
Use with hmpo-template-mixins for form inputs and view formatters. When used with hmpo-form-wizard you'll get a validation summary appearing at the top of your page when a form error occurs.
To enable Google Analytics tracking expose a GA ID as res.locals['ga-id']
.
Page views and form validation error events will be sent to GA.
Events contained in the array res.locals.gaevents
will be fired on page view, for instance:
res.locals.gaevents = [
{
gaCategory: 'Category',
gaAction: 'Action',
gaLabel: 'Label',
gaValue: 42
}
];
To enable Google Tag Manager expose GTM settings as:
res.locals.gtm = {
id: 'GT-XXXXXX',
preview: 'env-1',
auth: 'abcdefg'
};
For production environments only an ID is required.
Page views and form validation error events will be sent to GTM.
Events contained in the array res.locals.gaevents
will be fired on page view, for instance:
res.locals.gaevents = [
{
gaEvent: 'My Event', // defaults to 'Custom Event'
gaCategory: 'Category',
gaAction: 'Action',
gaLabel: 'Label',
gaValue: 42
}
];
Note: Enabling Google Tag Manager will disable Google Analytics Classic
FAQs
Page layouts and partials for Node.js with ExpressJS frontend applications
The npm package hmpo-templates receives a total of 3 weekly downloads. As such, hmpo-templates popularity was classified as not popular.
We found that hmpo-templates 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.