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

njk-brunch-static

v1.0.1

Published

Compile static nunjucks files with brunch.

Downloads

7

Readme

Release

njk-brunch-static

Compile static nunjucks files with brunch.

njk-brunch-static is a processor for html-brunch-static, a brunch plugin designed to handle static html files. njk-brunch-static can convert nunjucks files into static html files with html-brunch-static's support for layouts and partial views.

If you're looking for support for deprecated "jade" files, check out jade-brunch-static.

Installation

njk-brunch-static depends on html-brunch-static, which also depends on brunch-static, so, you will need to install all three. The recommended method is via npm:

npm install --save-dev brunch-static html-brunch-static njk-brunch-static

Or manually:

  • Add "brunch-static": "x.y.z" to package.json
  • Add "html-brunch-static": "x.y.z" to package.json
  • Add "njk-brunch-static": "x.y.z" to package.json
  • Run npm install
  • Alternatively, you may use the latest git version with:

Configuration

Add njk-brunch-static to your list of html-brunch-static processors:

exports.config =
  ...
  plugins: {
    static: {
      processors: [
        require('html-brunch-static')({
          processors: [
            require('njk-brunch-static')({
              fileMatch: 'source/views/home.njk',
              fileTransform: (filename) => filename.replace(/static\.njk/, '.html')
            })
          ]
        })
      ]
    }
  }

Most options passed to njk-brunch-static are passed, verbatim, to nunjucks, with the exception of:

  • fileMatch (default: /\.static\.njk/)

    fileMatch is an anymatch that is used to determine which files will be handled by this processor. As an anymatch, it may be a string with globs, a regex, or a function that takes a filename and returns true if it should be handled, or false otherwise. The default will match files that end in .static.njk.

  • fileTransform (default: (filename) => filename.replace(/static\.njk/, '.html'))

    fileTransform converts the input filename into an html filename. It takes a filename as input and returns the new filename with the html extension. If you set the fileMatch property above, you'll probably need to set this option as well to ensure that your output files end with the html extension.

Context and Local Variables

The html-brunch-static's context will be exposed in your nunjucks files as local variables allowing you to use them in your template.