Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nunjucks-date

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nunjucks-date

Plugin for nunjucks of momentjs format date

  • 1.5.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
968
decreased by-39.08%
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

FAQs

Package last updated on 20 Jan 2020

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