JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 116411
  • Score
    100M100P100Q149659F
  • License MIT

Easily add private variables to handlebars block helpers.

Package Exports

  • create-frame

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (create-frame) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

create-frame NPM version

Easily add private variables to handlebars block helpers.

Install

Install with npm

$ npm i create-frame --save

Usage

var createFrame = require('create-frame');

Example

Create private variables from options hash arguments.

Template

The @post variable inside the block is created by the post hash argument. So the context of @post is the this object that is passed to the block.

{{#block post=this}}
<h1>{{@post.title}}</h1>
{{/block}}

Helper

The following helper uses createFrame, then it extends the "frame" with hash arguments.

handlebars.registerHelper('block', function (options) {
  var frame = createFrame(options.data);
  // extend the frame with hash arguments
  frame.extend(options.hash);
  return options.fn(options, {data: frame});
});

var fn = handlebars.compile(str);
fn({title: 'My Blog Post'});
  • assemble: Static site generator for Grunt.js, Yeoman and Node.js. Used by Zurb Foundation, Zurb Ink, H5BP/Effeckt,… more | homepage
  • handlebars-helpers: 120+ Handlebars helpers in ~20 categories, for Assemble, YUI, Ghost or any Handlebars project. Includes… more | homepage

Running tests

Install dev dependencies:

$ npm i -d && npm test

Contributing

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

Author

Jon Schlinkert

License

Copyright © 2015 Jon Schlinkert Released under the MIT license.


This file was generated by verb-cli on September 25, 2015.