npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

hmpo-templates

v2.8.0

Published

Page layouts and partials for Node.js with ExpressJS frontend applications

Downloads

21

Readme

hmpo-templates

Common page layouts and partials.

Installation

npm install [--save] hmpo-templates

Setup

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));

Basic usage

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}}

Templates

The templates are added to res.locals with hmpo as a prefix to the template names.

Layout:

  • maincontent (sets maincontent-left as the default and provides a block to override)
  • maincontent-left
  • maincontent-right
  • maincontent-full
  • flash-card

Partials:

  • analytics
  • gtm
  • gtm-noscript
  • back-link
  • back
  • betatag
  • body-end
  • cookies
  • error-summary
  • form
  • head
  • new-window
  • sidebar
  • warning

Changing a page layout

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.

Compatibility

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.

Google Analytics Classic

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
    }
];

Google Tag Manager

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