nunjucks-date
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/nunjucks-date package

1.5.0 • Public • Published

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.

Readme

Keywords

Package Sidebar

Install

npm i nunjucks-date

Weekly Downloads

805

Version

1.5.0

License

MIT

Unpacked Size

213 kB

Total Files

11

Last publish

Collaborators

  • techmsi