Socket
Socket
Sign inDemoInstall

babel-plugin-date-fns

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-plugin-date-fns

> :warning: The current version (2.x) supports date-fns v2. If you are using v1, please use [1.x](https://github.com/date-fns/babel-plugin-date-fns/tree/v1).


Version published
Weekly downloads
28K
decreased by-15%
Maintainers
1
Install size
5.35 kB
Created
Weekly downloads
 

Readme

Source

babel-plugin-date-fns

:warning: 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.

Keywords

FAQs

Last updated on 25 Oct 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc