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

metalsmith-handlebars-x

v0.4.0

Published

The best plugin for metalsmith + Handlebars. Global/local partials, in-place & layout compilation, and maximum flexibility.

Downloads

22

Readme

Metalsmith+handlebars

The best plugin for metalsmith + Handlebars. Global/local partials, in-place & layout compilation, and maximum customizability.

Combines all of metalsmith-handlebars, metalsmith-handlebars-contents, metalsmith-handlebars-layouts, metalsmith-discover-helpers, metalsmith-discover-partials, @goodthnx/metalsmith-handlebars, metalsmith-nested, metalsmith-register-helpers, metalsmith-register-partials and adds more. Written out of frustration with incomplete and/or complex existing options.

metalsmith: plugin npm: version travis: build code coverage license: LGPL-3.0

Features

  • filter files by pattern
  • auto-load global and local partials found in directory specified by option partials
  • compile contents (like metalsmith-in-place) and layout (like metalsmith-layouts)
  • includes useful basic set and call helpers
  • allows custom Handlebars, partials, helpers
  • also works with metalsmith-layouts, handlebars-layouts

Install

NPM:

npm i -D metalsmith-handlebars-x

Yarn:

yarn add metalsmith-handlebars-x

Quickstart

var xhandlebars = require('metalsmith-handlebars-x');

// use defaults
metalsmith.use(xhandlebars());

// use defaults (explicit)
metalsmith.use(xhandlebars({
  instance: require('handlebars'),
  pattern: '**/*.{hbs,handlebars}',
  layout: true,
  partials: 'partials',
  helpers: {},
  context: (filemeta, globalmeta) => Object.assign({}, globalmeta, filemeta),
  renameExtension: null
});

Debug

Set env var DEBUG to metalsmith-handlebars-x.

Linux / OSX

DEBUG=metalsmith-handlebars-x

Windows

set DEBUG=metalsmith-handlebars-x

Usage

Partials

Partials will be looked for in the directory specified in the partials option. Partials are automatically removed from the build output unless layout: false. A partial at partials/blockquote.hbs will be usable in templates as blockquote.
A partial at partials/layout/default.hbs will be usable in templates as layout/default.

Global partials

Global partials (available to all templates) can be registered either by specifying a directory in the Metalsmith.source directory:

metalsmith.use(handlebars({ partials: 'partials' }));

or by passing the Handlebars instance to the plugin:

var Handlebars = require('handlebars');
Handlebars.registerPartial('blockquote', '<blockquote cite="{{url}}">{{ quote }}</blockquote>');

metalsmith.use(handlebars({ instance: Handlebars }));

Both can be used together!

Local partials

Local partials will be available to all templates that reside in the same directory.
In the directory structure below both .md files have access to partial layout/default.

├── partials
|    └── layout
|         └── default.hbs
└── posts
    ├── partials
    |    └── local.hbs
    ├── subfolder
    |    └── post-without-local-partials.md
    └── post-with-local-partials.md

Helpers

metalsmith-handlebars-x provides 2 useful helpers by default:

  • call : {{ call func arg1 arg2 arg3 }} allows calling functions available in template context
  • set: {{ set varname value }} allows storing temporary variables for re-use in the template

Register extra helpers through the helpers option as {[helperName]: helperFunc}, or similar to global partials, register them directly on a Handlebars instance passed to the instance option.

Metadata mapping

Specify a custom context option to map file & global metadata in your templates, e.g:

context: function(filemeta, globalmeta) {
  return {
    page: filemeta,
    site: globalmeta
  };
}

In your templates:

{{ site.sitename }} {{ page.stats.birthTime }}

File extensions

With the renameExtension option you can choose what to do with a file's extension:

  • null or undefined does nothing (default)
  • "" (empty string) removes the last extension (so index.hbs would become index, while style.css.hbs would become style.css)
  • ".<ext>" renames the last extension to <ext>, for example index.hbs would become index.html if renameExtension: '.html'.

Usage with handlebars-layouts

Relatively straight-forward:

const Handlebars = require('handlebars');
const hbsLayouts = require('handlebars-layouts')(Handlebars);
const xhandlebars = require('metalsmith-handlebars-x');

Handlebars.registerHelper(hbsLayouts);

metalsmith.use(xhandlebars({ instance: Handlebars }));

With @metalsmith/layouts & metalsmith-discover-partials

You can use this plugin together with @metalsmith/layouts & metalsmith-discover-partials but you should specify layout: false in order to avoid conflicts. metalsmith-handlebars-x will then only compile file contents. See test.js for an example.

License

LGPL v3