Socket
Socket
Sign inDemoInstall

hoffman

Package Overview
Dependencies
256
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hoffman

view engine for dust


Version published
Maintainers
1
Install size
4.59 MB
Created

Readme

Source

Hoffman

A dust.js view engine for express.

Usage

Hoffman is installable via npm

npm i hoffman

Inside app.js

var hoffman = require('hoffman');

app.set('views', path.join(__dirname, 'templates')); // path to your templates
app.set('view engine', 'dust');
app.engine('dust', hoffman.__express());

// works with caching
app.set('view cache', true);

// optionally load all templates into dust cache on server start
hoffman.prime(app.settings.views, function(err) {
  // views are loaded
});

Rendering

Reference templates by name, without extension.

Inside a route:

res.render('index', {"planet" : "world"});

Inside of a template:

hello {>partial/}

All references are from the root of the views directory. Regardless of where the host template resides.

Streaming

Hoffman supports streaming the response, by augmenting the response object via middleware:

app.use(hoffman.stream);

You can then call res.stream instead of res.render. If you pass a callback, you will recieve the stream object back to do with what you want, otherwise content will be streamed via res.write() as chunks of the template are rendered. See the stream method code for more details.

Cache Priming

With view cache set to true, templates will be cached in memory the first time they are read off disk.

With hoffman.prime(app.settings.views) all templates inside of the view directory will be read into memeory on server start, meaning no first disk access after the server has started.

Tests

Hoffman comes with unit tests, code coverage reports, and jshint linting, run via:

npm test

dustin

Keywords

FAQs

Last updated on 07 Mar 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc