Socket
Socket
Sign inDemoInstall

ractive-datetime

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ractive-datetime

A date and time format mustache helper for [Ractive](http://www.ractivejs.org/), using [fecha](https://github.com/taylorhakes/fecha)


Version published
Maintainers
1
Created
Source

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 ractive-datetime@0.1

Keywords

FAQs

Package last updated on 21 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc