Ractive Date/Time helper
A date and time format mustache helper for Ractive, using fecha
Usage
Note: this helper is a self-registering CommonJS module, and in the browser requires a module system such as Webpack or Browserify.
npm install ractive-datetime
ES5:
var Ractive = ;;
ES6/2015+:
;;
In Ractive template:
<h2>{{datetime(some_date, 'MMMM Do, YYYY')}}</h2>
<h3>{{datetime(some_date, 'H:mmA')}}</h3>
Outputs:
May 28th, 2016
9:15AM
Full format options are here.
Note: Relative dates using fromNow
helper have been removed in version 1.x. to reduce dependency sizes.
If you need this, please use the older 0.1.x versions:
npm install [email protected]