Skip to content

leapfrogtechnology/just-handlebars-helpers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HandlebarHelpers

A lightweight package with common helpers for Handlebars

Installation

$ npm install just-handlebars-helpers --save

Usage

<!-- Load Handlebars -->
<script type="text/javascript" src="/node_modules/handlebars/dist/handlebars.min.js"></script>
<!-- Load the package -->
<script type="text/javascript" src="/node_modules/just-handlebars-helpers/dist/h.min.js"></script>
<script type="text/javascript">
    // Register helpers for Handlebars
    H.registerHelpers(Handlebars);
</script>

Testing the helpers

# Install dependencies
$ npm install

# Compile everything
$ gulp

# Run all the tests
$ npm test

Inspired by