helper-date
Template helper for adding formatted dates with moment.js. Should work with any engine.
See node-dateformat for all available options.
Install
Install with npm
npm i helper-date --save
Run tests
npm test
Register the helper
This should work with any engine, here are a few examples
template.helper('date', require('helper-date'));
assemble.helper('date', require('helper-date'));
verb.helper('date', require('helper-date'));
var handlebars = require('handlebars');
handlebars.registerHelper('date', require('helper-date'));
Usage
Handlebars:
{{date "MMMM DD, YYYY"}}
Lo-Dash or Underscore:
<%= date("MMMM DD, YYYY") %>
Verb (lo-dash, with special delimiters to avoid delimiter collision in documentation):
{%%= date("MMMM DD, YYYY") %}
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Author
[object Object]
License
Copyright (c) 2014 Jon Schlinkert
Released under the MIT licenses
This file was generated by verb on November 07, 2014.