JSPM

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

Template helper for adding formatted dates with node-dateformat. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registered. Also compatible with verb, assemble and Template.

Package Exports

  • helper-date

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 (helper-date) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

helper-date NPM version

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

template.helper('date', require('helper-date'));

assemble

assemble.helper('date', require('helper-date'));

verb

verb.helper('date', require('helper-date'));

handlebars

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.