Socket
Socket
Sign inDemoInstall

date-fns

Package Overview
Dependencies
0
Maintainers
3
Versions
200
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    date-fns

Date helpers


Version published
Weekly downloads
17M
decreased by-13.31%
Maintainers
3
Created
Weekly downloads
 

Package description

What is date-fns?

The date-fns npm package provides a comprehensive, yet simple and consistent toolset for manipulating JavaScript dates in a browser & Node.js. It offers a variety of functions to parse, validate, manipulate, and format dates.

What are date-fns's main functionalities?

Parsing Dates

Parse strings in ISO format to JavaScript Date objects.

const parseISO = require('date-fns/parseISO');
const result = parseISO('2023-04-12');

Formatting Dates

Format Date objects into strings with a given format.

const format = require('date-fns/format');
const result = format(new Date(2023, 3, 12), 'yyyy-MM-dd');

Comparing Dates

Compare two dates to determine if one comes before the other.

const isBefore = require('date-fns/isBefore');
const result = isBefore(new Date(2023, 3, 12), new Date(2023, 3, 13));

Manipulating Dates

Perform date calculations such as adding or subtracting time spans.

const addDays = require('date-fns/addDays');
const result = addDays(new Date(2023, 3, 12), 10);

Validating Dates

Check if a date is valid.

const isValid = require('date-fns/isValid');
const result = isValid(new Date('2023-04-12'));

Other packages similar to date-fns

Changelog

Source

[0.17.0] - 2015-09-29

Fixed

  • Fixed a lot of bugs appearing when date is modifying into other time zone (e.g., when adding months and original date is in DST but new date is not).

  • Prevent instances of Date to lose milliseconds value when passed to. parse in IE10.

Changed

  • setISOWeek now keeps time from original date.

  • Internal: reuse getDaysInMonth inside of addMonths.

Added

  • differenceInDays

  • getTimeSinceMidnight

  • format now has new format key aa, which returns a.m./p.m. as opposed to a that returns am/pm.

  • Complete UMD package (for Bower and CDN).

Readme

Source

date-fns

Build Status

Date helpers in function-per-file style.

Installation

npm install --save date-fns

Usage

var isLastDayOfMonth = require('date-fns/src/is_last_day_of_month')
var date = new Date(2014, 1, 28)
console.log(isLastDayOfMonth(date))
//=> true

API

Code is fully documented, checkout source for reference.

Common helpers

  • format - format date.
  • isFuture - is passed date future?
  • isPast - is passed date past?
  • isEqual - are passed dates equal?
  • isBefore - is first date before second one?
  • isAfter - is first date after second one?
  • compareAsc - compares the two dates and returns -1, 0 or 1.
  • compareDesc - compares the two dates reverse chronologicaly and returns -1, 0 or 1.
  • max - returns latest date.
  • min - returns earliest date.
  • parse - parse ISO-8601-formatted date.

Range helpers

Milliseconds helpers

Seconds helpers

Minutes helpers

Hours helpers

Day helpers

Week helpers

  • getISOWeek - returns ISO week index.
  • setISOWeek - sets ISO week index.
  • startOfWeek - returns start of a week for passed date.
  • endOfWeek - returns end of a week for passed date.
  • lastDayOfWeek - returns last day of week for passed date.
  • addWeeks - add specified number of weeks to passed date.
  • subWeeks - subtract specified number of weeks from passed date.
  • isSameWeek - returns true if passed dates belongs to the same week.

Month helpers

Quarter helpers

Year helpers

  • getYear - returns full year.
  • setYear - sets full year.
  • getISOYear - returns ISO week-numbering year.
  • setISOYear - sets ISO week-numbering year.
  • startOfYear - returns start of year for passed date.
  • startOfISOYear - returns start of ISO week-numbering year for passed date.
  • endOfYear - returns end of year for passed date.
  • lastDayOfYear - returns last day of year for passed date.
  • addYears - add specified number of years to passed date.
  • subYears - subtract specified number of years from passed date.
  • isSameYear - are passed dates have the same year?
  • isLeapYear - returns true is passed date is in the leap year.
  • getISOWeeksInYear - returns number of weeks in ISO week-numbering year.

I18n

TODO

FAQs

Last updated on 29 Sep 2015

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc