Skip to content

techmsi/nunjucks-date

Repository files navigation

nunjucks-date

NPM version

Plugin for nunjucks of momentjs' format date CircleCI Build Status Code Climate Coverage Status Greenkeeper badge

Installation

npm install nunjucks-date --save

Usage

// Import the plugin
var nunjucksDate = require("nunjucks-date");

// Define a custom default date format. Any valid format works.
// The date format defaults to "YYYY"
// http://momentjs.com/docs/#/displaying/format/
nunjucksDate.setDefaultFormat("MMMM Do YYYY, h:mm:ss a");

// Initialize your Nunjucks enironment
var env = new nunjucks.Environment();

Using default name : 'date'

// Pass the environment to `install()`
nunjucksDate.install(env);

Using custom name

// Pass the environment & a custom filter name
nunjucksDate.install(env, "yourFilterName");

The above is eqivalent to

env.addFilter("date", require("nunjucks-date"));

Tests

  • Uses jest to run tests to generate code coverage metrics.
npm test
open coverage/lcov-report/index.html

Contributing

Contributions are welcome. Please file issues with any problems that you experience. Pull requests are welcome.