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

hapi-nunjucks-wrapper

v1.2.0

Published

A simple wrapper to use Nunjucks templates in Hapi

Downloads

5

Readme

hapi-nunjucks

A simple wrapper to let you use Nunjucks as a Hapi templating engine. Based on seldo/nunjucks-hapi project.

Nunjucks documentation

Hapi documentation

Usage

The following example will let you use Nunjucks templates, including template inheritance, inside Hapi. This assumes:

  • your templates are in a directory called "views"
  • they have the extension "html"
  • you have a template file in there called "mytemplate"
var Hapi = require('hapi')
var Path = require('path')

var server = new Hapi.Server()
server.connection({port:5000,host:'localhost'})

// set up templates
server.views({
  engines: {
    html: require('hapi-nunjucks')
  },
  path: Path.join(__dirname, 'views')
})

// Add a route
server.route({
  method: 'GET',
  path: '/test',
  handler: function (request, reply) {
    reply.view('mytemplate',{
      'myvariable': 'myvalue'
    })
  }
})

// start server
server.start()

Using Nunjucks filters and environments

If you want to go beyond the default configuration of Nunjucks, you need to configure an environment. Once that's done, you can do anything to the environment, like add filters or custom tags via extensions. This works just like the Nunjucks documentation says it does, with the exception that the path to templates is now required.

The example is otherwise the same as the above

var HapiNunjacks = require('hapi-nunjucks');

// set a common view path
var viewPath = Path.join(__dirname, 'views')

var env = HapiNunjucks.configure(viewPath)

// do anything you want to the env here
env.addFilter('somefilter', function(str, count) {
  // return some string
})

// set up templates with the same view path
server.views({
  engines: {
    html: HapiNunjucks
  },
  path: viewPath
})