JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3634
  • Score
    100M100P100Q119688F
  • License MIT

Day.js with all plugins and locales added out of the box, no need to use dayjs.extend nor dayjs.locale!

Package Exports

  • dayjs-with-plugins
  • dayjs-with-plugins/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dayjs-with-plugins) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

dayjs-with-plugins

build status code style styled with prettier made with lass license npm downloads

Day.js with all plugins and locales added out of the box, no need to use dayjs.extend nor dayjs.locale!

Table of Contents

Install

npm:

npm install dayjs dayjs-with-plugins

Usage

Node

const dayjs = require('dayjs-with-plugins');

console.log('M/D/YY', dayjs().format('M/D/YY'));

Browser

VanillaJS

This is the solution for you if you're just using <script> tags everywhere!

<script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=Promise"></script>
<script src="https://unpkg.com/dayjs-with-plugins"></script>
<script type="text/javascript">
  (function() {
    console.log('M/D/YY', dayjs().format('M/D/YY'));
  })();
</script>
Required Browser Features

We recommend using https://cdnjs.cloudflare.com/polyfill (specifically with the bundle mentioned in VanillaJS above):

<script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=Promise"></script>
  • Promise is not supported in op_mini all

Bundler

This assumes you are using browserify, webpack, rollup, or another bundler.

See Node usage above for how to use in a bundler environment.

Debugging

You can use NODE_DEBUG=dayjs-with-plugins node app.js to debug output from this package.

Contributors

Name Website
Nick Baugh http://niftylettuce.com/

License

MIT © Nick Baugh