ractive-datetime
v1.0.0
Published
A date and time format mustache helper for [Ractive](http://www.ractivejs.org/), using [fecha](https://github.com/taylorhakes/fecha)
Downloads
2
Readme
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 = require('ractive');
require('ractive-date-time');
ES6/2015+:
import Ractive from 'ractive';
import 'ractive-date-time';
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]