Giter Club home page Giter Club logo

babel-plugin-date-fns's Introduction

๐ŸŽ‰๏ธ NEW: date-fns v3 is out!

date-fns

date-fns provides the most comprehensive, yet simple and consistent toolset for manipulating JavaScript dates in a browser & Node.js

๐Ÿ‘‰ Documentation

๐Ÿ‘‰ Blog


It's like Lodash for dates

  • It has 200+ functions for all occasions.
  • Modular: Pick what you need. Works with webpack, Browserify, or Rollup and also supports tree-shaking.
  • Native dates: Uses existing native type. It doesn't extend core objects for safety's sake.
  • Immutable & Pure: Built using pure functions and always returns a new date instance.
  • TypeScript: The library is 100% TypeScript with brand-new handcrafted types.
  • I18n: Dozens of locales. Include only what you need.
  • and many more benefits
import { compareAsc, format } from "date-fns";

format(new Date(2014, 1, 11), "yyyy-MM-dd");
//=> '2014-02-11'

const dates = [
  new Date(1995, 6, 2),
  new Date(1987, 1, 11),
  new Date(1989, 6, 10),
];
dates.sort(compareAsc);
//=> [
//   Wed Feb 11 1987 00:00:00,
//   Mon Jul 10 1989 00:00:00,
//   Sun Jul 02 1995 00:00:00
// ]

The library is available as an npm package. To install the package run:

npm install date-fns --save

Docs

See date-fns.org for more details, API, and other docs.


License

MIT ยฉ Sasha Koss

babel-plugin-date-fns's People

Contributors

borodean avatar denkristoffer avatar dependabot[bot] avatar existentialism avatar meatwallace avatar mkg0 avatar renchap avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

babel-plugin-date-fns's Issues

Does it support aliased import?

For example is it possible to do this:

import { format as dateFnsFormat } from "date-fns";

dateFnsFormat(new Date(), "yyyy-MM-dd");

In some cases I have same name functions that conflict with "date-fns", so I think it perhaps would be better to support this feature.

Support i18n

Imports of locale aren't working. This:
import en from "date-fns/locale/en"
causes an error:
Error: Cannot find module 'date-fns/locale'.

Should I do the import otherwise, or is it a bug in the plugin? Thanks a lot!

speed

Plugin is pretty slow now, (in my case build time increased from 25 to 45 seconds).

Is it possible to speed up plugin at all?

Programmatically generate import names?

Hi there - it seems like this is doing a module lookup right now to determine the import filename. What about doing it programmatically, seeing as date-fns's filenames follow a pattern:

function importNameToFilename(importName) {
  return 'date-fns/' + importName.replace(/([A-Z])/, '_$1').toLowerCase();
}

importNameToFilename('startOfYear') // "date-fns/start_of_year"
importNameToFilename('differenceInCalendarDays') // "date-fns/difference_in_calendar_days"

It seems like this would address #2.

Support root

Transform:

import dt from 'date-fns';

const x = dt.addHours(new Date(), 1); 
const y = dt.format(y, 'MM/DD/YYYY');

to

import addHours from 'date-fns/add_hours';
import format from 'date-fns/format';

const x = addHours(new Date(), 1); 
const y = format(y, 'MM/DD/YYYY')

Support for date-fns@2?

Hello,

We rely on this babel plugin to help with bundling only application code that we use. Does it support the somewhat recent date-fns 2.x release?

Thanks!
David

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.