Home

Awesome

engine-handlebars NPM version NPM monthly downloads NPM total downloads Linux Build Status

Handlebars engine, consolidate.js style but with enhancements. This works with Assemble, express.js, engine-cache or any application that follows consolidate.js conventions.

Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your :heart: and support.

Install

Install with npm:

$ npm install --save engine-handlebars

Heads up!

There were major breaking changes in v1.0!.

Usage

const handlebars = require('handlebars');
const engine = require('engine-handlebars')(handlebars);
console.log(engine);

The engine object that is returned has the following properties:

API

.compile

Compile file.contents with handlebars.compile(). Adds a compiled .fn() property to the given file.

Params

Example

engine.compile({ contents: 'Jon {{ name }}' })
  .then(file => {
    console.log(typeof file.fn) // 'function'
  });

.render

Render file.contents with the function returned from .compile().

Params

Example

engine.render({ contents: 'Jon {{ name }}' }, { name: 'Schlinkert' })
  .then(file => {
    console.log(file.contents.toString()) // 'Jon Schlinkert'
  });

.compileSync

Compile file.contents with handlebars.compile(). Adds a compiled .fn() property to the given file.

Params

Example

let file = engine.compileSync({ contents: 'Jon {{ name }}' });
console.log(typeof file.fn) // 'function'

.renderSync

Render file.contents with the function returned from .compile().

Params

Example

let file = engine.renderSync({ contents: 'Jon {{ name }}' }, { name: 'Schlinkert' });
console.log(file.contents.toString()) // 'Jon Schlinkert'

Release History

v1.0.0

v0.8.0

v0.7.0

About

<details> <summary><strong>Contributing</strong></summary>

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

</details> <details> <summary><strong>Running Tests</strong></summary>

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test
</details> <details> <summary><strong>Building docs</strong></summary>

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb
</details>

Related projects

You might also be interested in these projects:

Contributors

CommitsContributor
32jonschlinkert
18doowb

Author

Jon Schlinkert

License

Copyright © 2018, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.8.0, on November 11, 2018.