All Projects → date-fns → Babel Plugin Date Fns

date-fns / Babel Plugin Date Fns

Licence: mit

Programming Languages

javascript
184084 projects - #8 most used programming language

babel-plugin-date-fns

⚠️ The current version (2.x) supports date-fns v2. If you are using v1, please use 1.x.

Install

$ npm i --save date-fns
$ npm i --save-dev babel-plugin-date-fns

Example

Transforms

import { differenceInYears, format, formatDistance } from "date-fns";

roughly to

import differenceInYears from 'date-fns/differenceInYears';
import format from "date-fns/format";
import formatDistance from "date-fns/formatDistance";

Usage

.babelrc

{
  "plugins": ["date-fns"],
  "presets": ["@babel/preset-env"]
}

Webpack

module: {
  rules: [
    {
      test: /\.m?js$/,
      exclude: /(node_modules|bower_components)/,
      use: {
        loader: 'babel-loader',
        options: {
          presets: ['@babel/preset-env'],
          plugins: ['date-fns']
        }
      }
    }
  ]
}

Thanks

Heavily inspired by babel-plugin-lodash and babel-plugin-recharts.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].